]> git.rkrishnan.org Git - dttsp.git/blob - jDttSP/correctIQ.h
changes to speechproc, correct IQ -- restore squelch in sdr.c -- other minor stuff
[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 phase, REAL gain);
11 extern void delCorrectIQ(IQ iq);
12 extern void correctIQ(CXB sigbuf, IQ iq);
13
14 #endif