diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-11-17 16:09:31 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-11-17 16:09:31 -0500 |
commit | f38a7ce4cbde705c72183bf2713612be773e3b0f (patch) | |
tree | c9a2c13490923c2be0b4a76cb55578ce086d3789 /gr-blocks/lib/conjugate_cc_impl.cc | |
parent | a2f687824fa2887e116ab1e01d054b5e883e901c (diff) |
blocks: switch all blocks to use the VOLK dispatchers for alignment handling.
Diffstat (limited to 'gr-blocks/lib/conjugate_cc_impl.cc')
-rw-r--r-- | gr-blocks/lib/conjugate_cc_impl.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gr-blocks/lib/conjugate_cc_impl.cc b/gr-blocks/lib/conjugate_cc_impl.cc index 14fbbf172c..55ff30aa5d 100644 --- a/gr-blocks/lib/conjugate_cc_impl.cc +++ b/gr-blocks/lib/conjugate_cc_impl.cc @@ -54,12 +54,7 @@ namespace gr { gr_complex *iptr = (gr_complex *) input_items[0]; gr_complex *optr = (gr_complex *) output_items[0]; - if(is_unaligned()) { - volk_32fc_conjugate_32fc_u(optr, iptr, noutput_items); - } - else { - volk_32fc_conjugate_32fc_a(optr, iptr, noutput_items); - } + volk_32fc_conjugate_32fc(optr, iptr, noutput_items); return noutput_items; } |