Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / filter / gr_pfb_arb_resampler_ccf.cc @ 63b05200

History | View | Annotate | Download (6.6 kB)

# Date Author Comment
a151e3e1 12/12/2010 06:52 pm Tom Rondeau

PFB resampler: fix it this way to avoid the signed/unsigned warning.

7e21f9ad 12/12/2010 06:51 pm Tom Rondeau

PFB resampler: fixes bug where filter could be looking past the number of inputs.

c75950bd 12/12/2010 06:48 pm Tom Rondeau

resampler PFB: Sets relative rate when rate is changed.

9db640f5 12/11/2010 10:42 pm Matt Ettus

Create method to set rate on pfb_arb_resamp after it has been created.
Allow it to be called from GRC.

d46b800b 11/09/2010 03:42 am Tom Rondeau

Fixing signed/unsigned warnings.

3ac56587 10/07/2010 12:50 am Tom Rondeau

Fixed missing set_relative_rate in these two blocks. The others don't actually do it, even though it's counter-intuitive for the pfb_decimate, which is a sync_block (decimation actually care of in the stream_to_streams).

0a9b999b 08/03/2010 08:43 pm Eric Blossom

Modify all block factories to use gnuradio::get_initial_sptr.

78c6890a 04/18/2010 09:51 pm Tom Rondeau

Fixing doxygen warnings from arb_resampler. Also, removed set_taps from public
interface since we don't really suppor this right now. Renamed it and made it private.

fd6fd946 01/31/2010 10:03 pm Tomas Balbierius

Got this wrong before. Derivative filter taps are now calculated correctly which makes the rest of the code work. My previous test cases must have masked the problem.

47b9d791 12/18/2009 05:09 am Tomas Balbierius

New way to handle arbitrary resampler. Now featuring lower noise!

3f60c948 10/20/2009 03:49 am Tomas Balbierius

Resampler seems to be working for all values of rate

c1bca337 10/20/2009 03:18 am Tomas Balbierius

Working on fixing arbitrary resampler not working for rate < 1.0; this fixes it for 0.5<=rate<=1.0 range.

95eab8ec 09/05/2009 06:29 pm Johnathan Corgan

Add missing cstdio includes for gcc 4.4 compatibility

a0d13b42 08/12/2009 03:39 am Tom Rondeau

Merging trondeau/pfb r11249:11581 into trunk. This adds a few polyphase filterbank implementations that do (integer) decimation, (integer) interpolation, arbitrary resampling, and channelizing. gnuradio-example/python/pfb includes a number of different examples of how to use these blocks....