diff options
-rw-r--r-- | gr-digital/lib/corr_est_cc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/lib/corr_est_cc_impl.cc b/gr-digital/lib/corr_est_cc_impl.cc index dfcd966b05..5157f8f6de 100644 --- a/gr-digital/lib/corr_est_cc_impl.cc +++ b/gr-digital/lib/corr_est_cc_impl.cc @@ -292,7 +292,7 @@ namespace gr { // Estimated scaling factor for the input stream to normalize // the output to +/-1. uint32_t maxi; - volk_32fc_index_max_16u(&maxi, (gr_complex*)in, noutput_items); + volk_32fc_index_max_32u_manual(&maxi, (gr_complex*)in, noutput_items, "generic"); d_scale = 1 / std::abs(in[maxi]); // Calculate the phase offset of the incoming signal. |