diff options
author | Michael Dickens <michael.dickens@ettus.com> | 2016-05-28 08:57:27 -0400 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2016-05-28 08:57:27 -0400 |
commit | 84457939b6cb113c54ce8e79fe14cf22f2f167e5 (patch) | |
tree | 237fc68dbce350504f3c3c09e25798e3462918d7 /gr-dtv | |
parent | 0e1b7106f64a81bbf6a6a6fd85b291d1a406ac0e (diff) |
dtv: Fix usage of volk_32f_index_max*, first argument, to be uint16_t* as required by the Volk API.
Diffstat (limited to 'gr-dtv')
-rw-r--r-- | gr-dtv/lib/dvbt/dvbt_ofdm_sym_acquisition_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-dtv/lib/dvbt/dvbt_ofdm_sym_acquisition_impl.cc b/gr-dtv/lib/dvbt/dvbt_ofdm_sym_acquisition_impl.cc index abef1d0510..b6eacade63 100644 --- a/gr-dtv/lib/dvbt/dvbt_ofdm_sym_acquisition_impl.cc +++ b/gr-dtv/lib/dvbt/dvbt_ofdm_sym_acquisition_impl.cc @@ -47,7 +47,7 @@ namespace gr { int dvbt_ofdm_sym_acquisition_impl::peak_detect_process(const float * datain, const int datain_length, int * peak_pos, int * peak_max) { - unsigned int peak_index = 0; + uint16_t peak_index = 0; int peak_pos_length = 0; volk_32f_index_max_16u(&peak_index, &datain[0], datain_length); |