]> git.rkrishnan.org Git - dttsp.git/blobdiff - jDttSP/correctIQ.c
changes to speechproc, correct IQ -- restore squelch in sdr.c -- other minor stuff
[dttsp.git] / jDttSP / correctIQ.c
index 3fc3e52a6ba0321e19808cb599bc6542eb9e600b..ef261f74a30d6ece6d0a55a3e7fffeed06083fd5 100644 (file)
@@ -37,10 +37,10 @@ Bridgewater, NJ 08807
 #include <common.h>
 
 IQ
-newCorrectIQ(REAL phaseadjustment, REAL gainadjustment) {
+newCorrectIQ(REAL phase, REAL gain) {
   IQ iq = (IQ) safealloc(1, sizeof(iqstate), "IQ state");
-  iq->phase = phaseadjustment;
-  iq->gain = gainadjustment;
+  iq->phase = phase;
+  iq->gain = gain;
   return iq;
 }