Skip to content

Commit

Permalink
Merge pull request #859 from argilo/fix-audio-fft-buffer
Browse files Browse the repository at this point in the history
Set correct buffer size for audio FFT
  • Loading branch information
argilo authored Nov 7, 2020
2 parents 7e1b0da + 0dc3339 commit f292ffb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions resources/news.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

2.13.5: In progress...

FIXED: Set correct buffer size for audio FFT.


2.13.4: Released November 6, 2020

NEW: Added man page for use by distributions.
Expand Down
2 changes: 1 addition & 1 deletion src/applications/gqrx/receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ receiver::receiver(const std::string input_device,
dc_corr = make_dc_corr_cc(d_decim_rate, 1.0);
iq_fft = make_rx_fft_c(8192u, d_decim_rate, gr::filter::firdes::WIN_HANN);

audio_fft = make_rx_fft_f(8192u, gr::filter::firdes::WIN_HANN);
audio_fft = make_rx_fft_f(8192u, d_audio_rate, gr::filter::firdes::WIN_HANN);
audio_gain0 = gr::blocks::multiply_const_ff::make(0);
audio_gain1 = gr::blocks::multiply_const_ff::make(0);
set_af_gain(DEFAULT_AUDIO_GAIN);
Expand Down

0 comments on commit f292ffb

Please sign in to comment.