summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/conjugate_cc_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/conjugate_cc_impl.cc')
-rw-r--r--gr-blocks/lib/conjugate_cc_impl.cc7
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;
}