mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-22 11:49:38 -05:00
Disable FIR filter -- decimation is enough?
This commit is contained in:
parent
24d06e13d7
commit
1dc218d346
@ -186,9 +186,10 @@ void DemodulatorPreThread::threadMain() {
|
||||
|
||||
DemodulatorThreadPostIQData resamp;
|
||||
resamp.data = new std::vector<liquid_float_complex>;
|
||||
resamp.data->resize(bufSize);
|
||||
// resamp.data->resize(bufSize);
|
||||
resamp.data->assign(in_buf,in_buf+bufSize);
|
||||
|
||||
firfilt_crcf_execute_block(fir_filter, in_buf, bufSize, &((*resamp.data)[0]));
|
||||
// firfilt_crcf_execute_block(fir_filter, in_buf, bufSize, &((*resamp.data)[0]));
|
||||
|
||||
resamp.audio_resample_ratio = audio_resample_ratio;
|
||||
resamp.audio_resampler = audio_resampler;
|
||||
|
Loading…
Reference in New Issue
Block a user