]> git.rkrishnan.org Git - dttsp.git/blob - jDttSP/correctIQ.h
0077a0ad7112314e41c2dc5b4e4ca082ed51cb39
[dttsp.git] / jDttSP / correctIQ.h
1 #ifndef _correctIQ_h
2 #define _correctIQ_h
3
4 #include <bufvec.h>
5
6 typedef  struct _iqstate {
7   REAL phase, gain;
8 } *IQ, iqstate;
9
10 extern IQ newCorrectIQ(REAL phaseadjusment, REAL gainadjustment);
11 extern void delCorrectIQ(IQ iq);
12 extern void correctIQ(CXB sigbuf, IQ iq);
13
14 #endif