diff options
author | Tom Rondeau | 2012-11-10 15:45:06 -0500 |
---|---|---|
committer | Tom Rondeau | 2012-11-10 15:45:06 -0500 |
commit | 291513738c41128bd2ed37b26c53eb7273903dab (patch) | |
tree | 8e92e4401550fc6802b4c27bd06dc83cfb5c9c11 /gr-fft | |
parent | 32cad29dc50d26af8e7a34b040d9d2657017e5bb (diff) | |
download | gnuradio-291513738c41128bd2ed37b26c53eb7273903dab.tar.gz gnuradio-291513738c41128bd2ed37b26c53eb7273903dab.tar.bz2 gnuradio-291513738c41128bd2ed37b26c53eb7273903dab.zip |
fft: fixing float-in, complex-out fft block to use the right io sig.
Diffstat (limited to 'gr-fft')
-rw-r--r-- | gr-fft/lib/fft_vfc_fftw.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fft/lib/fft_vfc_fftw.cc b/gr-fft/lib/fft_vfc_fftw.cc index 8f9b127e5..890dac7be 100644 --- a/gr-fft/lib/fft_vfc_fftw.cc +++ b/gr-fft/lib/fft_vfc_fftw.cc @@ -45,7 +45,7 @@ namespace gr { const std::vector<float> &window, int nthreads) : gr_sync_block("fft_vfc_fftw", - gr_make_io_signature(1, 1, fft_size * sizeof(gr_complex)), + gr_make_io_signature(1, 1, fft_size * sizeof(float)), gr_make_io_signature(1, 1, fft_size * sizeof(gr_complex))), d_fft_size(fft_size), d_forward(forward) { |