diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-29 15:24:16 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-29 19:27:58 -0400 |
commit | 89f684339d1d75617badb5f8b19c5e0e8dc9b711 (patch) | |
tree | 81d171dc2ee039446df97c74d9440050fbecb894 /gr-fec | |
parent | bf914b6ca9b64d12c510c92a3cc6f4762639c0f8 (diff) |
blocks: adding VOLK support for some functions.
* multipy_const_vcc and _vff
* sub_ff
* float_to_complex
* binary_slicer
Also adds a min_XX block to complement max_XX.
Diffstat (limited to 'gr-fec')
-rw-r--r-- | gr-fec/lib/dummy_decoder_impl.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-fec/lib/dummy_decoder_impl.cc b/gr-fec/lib/dummy_decoder_impl.cc index 5ab91d0799..105057447f 100644 --- a/gr-fec/lib/dummy_decoder_impl.cc +++ b/gr-fec/lib/dummy_decoder_impl.cc @@ -116,6 +116,7 @@ namespace gr { int8_t *out = (int8_t*)outbuffer; //memcpy(out, in, d_frame_size*sizeof(char)); + //volk_32f_binary_slicer_8i(out, in, d_frame_size); volk_32f_s32f_convert_8i(out, in, 1.0/2.0, d_frame_size); } |