commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r4751 - gnuradio/branches/developers/jcorgan/frac/gnur


From: jcorgan
Subject: [Commit-gnuradio] r4751 - gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter
Date: Wed, 14 Mar 2007 14:55:02 -0600 (MDT)

Author: jcorgan
Date: 2007-03-14 14:55:02 -0600 (Wed, 14 Mar 2007)
New Revision: 4751

Added:
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.cc
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.h
Removed:
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.cc
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.h
Modified:
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/Makefile.am
Log:
Renamed gr_fractional_interpolator to gr_fractional_interpolator_ff

Modified: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/Makefile.am
===================================================================
--- 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/Makefile.am
  2007-03-14 20:12:41 UTC (rev 4750)
+++ 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/Makefile.am
  2007-03-14 20:55:02 UTC (rev 4751)
@@ -170,7 +170,7 @@
        gr_fft_filter_fff.cc            \
        gr_goertzel_fc.cc               \
        gr_filter_delay_fc.cc           \
-       gr_fractional_interpolator.cc   \
+       gr_fractional_interpolator_ff.cc \
        gr_hilbert_fc.cc                \
        gr_iir_filter_ffd.cc            \
        gr_sincos.c                     \
@@ -229,7 +229,7 @@
        gr_fft_filter_fff.h             \
        gr_filter_delay_fc.h            \
        gr_fir_sysconfig_x86.h          \
-       gr_fractional_interpolator.h    \
+       gr_fractional_interpolator_ff.h \
        gr_goertzel_fc.h                \
        gr_hilbert_fc.h                 \
        gr_iir_filter_ffd.h             \

Deleted: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.cc

Deleted: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.h

Copied: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.cc
 (from rev 4750, 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.cc)
===================================================================
--- 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.cc
                             (rev 0)
+++ 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.cc
     2007-03-14 20:55:02 UTC (rev 4751)
@@ -0,0 +1,93 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2004,2007 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <gr_io_signature.h>
+#include <gr_fractional_interpolator_ff.h>
+#include <gri_mmse_fir_interpolator.h>
+#include <stdexcept>
+
+// Public constructor
+gr_fractional_interpolator_ff_sptr gr_make_fractional_interpolator_ff(float 
phase_shift, float interp_ratio)
+{
+  return gr_fractional_interpolator_ff_sptr(new 
gr_fractional_interpolator_ff(phase_shift, interp_ratio));
+}
+
+gr_fractional_interpolator_ff::gr_fractional_interpolator_ff(float 
phase_shift, float interp_ratio)
+  : gr_block ("fractional_interpolator_ff",
+             gr_make_io_signature (1, 1, sizeof (float)),
+             gr_make_io_signature (1, 1, sizeof (float))),
+    d_mu (phase_shift), d_mu_inc (interp_ratio), d_interp(new 
gri_mmse_fir_interpolator())
+{
+  if (interp_ratio <=  0)
+    throw std::out_of_range ("interpolation ratio must be > 0");
+  if (phase_shift <  0  || phase_shift > 1)
+    throw std::out_of_range ("phase shift ratio must be > 0 and < 1");
+
+  set_relative_rate (1.0 / interp_ratio);
+}
+
+gr_fractional_interpolator_ff::~gr_fractional_interpolator_ff()
+{
+  delete d_interp;
+}
+
+void
+gr_fractional_interpolator_ff::forecast(int noutput_items, gr_vector_int 
&ninput_items_required)
+{
+  unsigned ninputs = ninput_items_required.size();
+  for (unsigned i=0; i < ninputs; i++)
+
+    ninput_items_required[i] =
+      (int) ceil((noutput_items * d_mu_inc) + d_interp->ntaps());
+}
+
+int
+gr_fractional_interpolator_ff::general_work(int noutput_items,
+                                           gr_vector_int &ninput_items,
+                                           gr_vector_const_void_star 
&input_items,
+                                           gr_vector_void_star &output_items)
+{
+  const float *in = (const float *) input_items[0];
+  float *out = (float *) output_items[0];
+
+  int  ii = 0;                         // input index
+  int          oo = 0;                         // output index
+
+  while (oo < noutput_items) {
+
+    out[oo++] = d_interp->interpolate(&in[ii], d_mu);
+
+    double s = d_mu + d_mu_inc;
+    double f = floor (s);
+    int incr = (int) f;
+    d_mu = s - f;
+    ii += incr;
+  }
+
+  consume_each (ii);
+
+  return noutput_items;
+}

Copied: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.h
 (from rev 4750, 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator.h)
===================================================================
--- 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.h
                              (rev 0)
+++ 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/lib/filter/gr_fractional_interpolator_ff.h
      2007-03-14 20:55:02 UTC (rev 4751)
@@ -0,0 +1,62 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2004,2007 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_GR_FRACTIONAL_INTERPOLATOR_FF_H
+#define        INCLUDED_GR_FRACTIONAL_INTERPOLATOR_FF_H
+
+#include <gr_block.h>
+
+class gri_mmse_fir_interpolator;
+
+class gr_fractional_interpolator_ff;
+typedef boost::shared_ptr<gr_fractional_interpolator_ff> 
gr_fractional_interpolator_ff_sptr;
+
+// public constructor
+gr_fractional_interpolator_ff_sptr gr_make_fractional_interpolator_ff (float 
phase_shift, float interp_ratio);
+
+/*!
+ * \brief Interpolating mmse filter with float input, float output
+ * \ingroup filter
+ */
+class gr_fractional_interpolator_ff : public gr_block
+{
+public:
+  ~gr_fractional_interpolator_ff ();
+  void forecast(int noutput_items, gr_vector_int &ninput_items_required);
+  int general_work (int noutput_items,
+                   gr_vector_int &ninput_items,
+                   gr_vector_const_void_star &input_items,
+                   gr_vector_void_star &output_items);
+
+protected:
+  gr_fractional_interpolator_ff (float phase_shift, float interp_ratio);
+
+private:
+  float                        d_mu;
+  float                        d_mu_inc;
+  gri_mmse_fir_interpolator    *d_interp;
+
+  friend gr_fractional_interpolator_ff_sptr
+  gr_make_fractional_interpolator_ff (float phase_shift, float interp_ratio);
+};
+
+#endif





reply via email to

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