History | View | Annotate | Download (3.6 kB)
filter: adding rational resampler with GRC and QA.
filter: adding PFB arbitrary resampler (ccf and fff) with GRC and QA.
filter: adding PFB interpolator with GRC and QA.
filter: adding PFB decimator with GRC and QA.
filter: added interp_fir_filter with QA and GRC.
filter: adding fractional_interpolator_{cc,ff} with QA and GRC.
filter: added mmse_fir_interpolator with QA code.
filter: adding freq_xlating_filter.
Includes QA and GRC.
Update to build_utils adds a FIR_TYPE for the type of filter and CFIR_TYPE for the type of filter where the taps are always complex (needed for freq_xlating_filter).
filter: adding IIR filter.
Include QA and GRC.
filter: copied over interpolator_taps.h to gr-filter.
filter: adding single_pole_iir_filter blocks.
QA, docs, and GRC.
filter: updating adaptive FIR filters.
No need for our own adaptive_fir class; can do everything with fir_filter.
With QA code.
filter: adding ssc and fsf versions of filter with associated new Volk kernels.
These routines work and pass QA. They could use some performance work. the FSF is just slightly slower than before; the SCC version is more noticably slower.
Both could benefit, probably, by using SSE2 intrinsics to handle the shorts.
filter: adding ccf version for adaptive filter.
filter: wip: working on adaptive FIR filter. Moved ccc and created parent class that is not a gr_block.
filter: created polyphase_filterbank parent class to handle some initialization and setting taps of PFB blocks.
Converted pfb_channelizer_ccf over to new parent class. Passes QA.
filter: copied over pfb_channelizer to gr-filter with QA and GRC.
filter: added fir_filter_with_buffer to gr-filter.
Only fff and ccc versions so far. Needs work on Volk to be followed from fir_filter.
filter: added filter_delay_fc to gr-filter with QA and GRC files.
filter: moved dc_blocker to gr-filter with QA and GRC blocks.
filter: added hilbert xform block with QA and GRC block.
filter: added Parks-McClellen algorithm.
Renamed gr_remez to pm_remez here. Added QA code and fixed coding style.
filter: added firdes for generating FIR filters to gr-filter.
Addes QA code in both Python and C++.
filter: fixed FIR filter taps and added complex FFT filter.
filter: Reworking filter to have a set of basic implementation classes for filters of different kinds.
The GR blocks are templated now and call from fir_filters for the volk-specific implemenation.
Note the modification to build_utils.py to accomodate these changes.
filter: work on creating gr-filter top-level component.
Builds but does not bring in libgnuradio-fft.so symbols.