commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] gnuradio-core/src/lib/filter gr_goertzel_fc.cc


From: Johnathan Corgan
Subject: [Commit-gnuradio] gnuradio-core/src/lib/filter gr_goertzel_fc.cc
Date: Fri, 23 Jun 2006 21:15:43 +0000

CVSROOT:        /sources/gnuradio
Module name:    gnuradio-core
Changes by:     Johnathan Corgan <jcorgan>      06/06/23 21:15:43

Modified files:
        src/lib/filter : gr_goertzel_fc.cc 

Log message:
        Fixed indexing thinko.  Now seems to work.  Really off to Field Day 
now...

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnuradio-core/src/lib/filter/gr_goertzel_fc.cc?cvsroot=gnuradio&r1=1.1&r2=1.2

Patches:
Index: gr_goertzel_fc.cc
===================================================================
RCS file: /sources/gnuradio/gnuradio-core/src/lib/filter/gr_goertzel_fc.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- gr_goertzel_fc.cc   23 Jun 2006 21:11:33 -0000      1.1
+++ gr_goertzel_fc.cc   23 Jun 2006 21:15:43 -0000      1.2
@@ -59,7 +59,7 @@
 
   for (int i = 0; i < noutput_items; i++) {
     *out++ = d_goertzel.dft(in);
-    in += sizeof(float)*d_points;
+    in += d_points;
   }
 
   return noutput_items;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]