fix for ticket:250
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 9 Jul 2008 16:02:37 +0000 (16:02 +0000)
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 9 Jul 2008 16:02:37 +0000 (16:02 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8835 221aa14e-8319-0410-a670-987f0aec2ac5

gnuradio-core/src/lib/runtime/gr_sync_interpolator.cc
gnuradio-core/src/lib/runtime/gr_sync_interpolator.h

index f61e59ea1201547f3a73c69c905358ce5adbeff7..d130a5be147045dcbb4c4047b77a8afdfae1199d 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2008 Free Software Foundation, Inc.
  * 
  * This file is part of GNU Radio
  * 
@@ -50,7 +50,7 @@ gr_sync_interpolator::fixed_rate_noutput_to_ninput(int noutput_items)
 }
 
 int
-gr_sync_interpolator::fixed_rate_ninput_to_noutout(int ninput_items)
+gr_sync_interpolator::fixed_rate_ninput_to_noutput(int ninput_items)
 {
   return std::max(0, ninput_items - (int)history() + 1) * interpolation();
 }
index b5dfed70c3a35712910b571979d8960bb137bbf5..87e718cca9b91cc84322888cc3c2ac3d69423b55 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2008 Free Software Foundation, Inc.
  * 
  * This file is part of GNU Radio
  * 
@@ -60,7 +60,7 @@ class gr_sync_interpolator : public gr_sync_block
 
   // derived classes should override work
 
-  int fixed_rate_ninput_to_noutout(int ninput);
+  int fixed_rate_ninput_to_noutput(int ninput);
   int fixed_rate_noutput_to_ninput(int noutput);
 };