summaryrefslogtreecommitdiff
path: root/gr-filter/lib
diff options
context:
space:
mode:
authorJosh Blum2013-01-13 17:43:01 -0800
committerJosh Blum2013-01-13 17:43:01 -0800
commit1e6db7d187f0bb9835872d659fcaa4e7f3ba577f (patch)
tree7c4073fe08558bf6b33d5ebb333b679ac567159c /gr-filter/lib
parentb383c4ec3fe6c5f2bbace2f529760b91b77122ef (diff)
downloadgnuradio-1e6db7d187f0bb9835872d659fcaa4e7f3ba577f.tar.gz
gnuradio-1e6db7d187f0bb9835872d659fcaa4e7f3ba577f.tar.bz2
gnuradio-1e6db7d187f0bb9835872d659fcaa4e7f3ba577f.zip
filter: bring in fix for volk update
Diffstat (limited to 'gr-filter/lib')
-rw-r--r--gr-filter/lib/fir_filter.cc2
-rw-r--r--gr-filter/lib/fir_filter_with_buffer.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/gr-filter/lib/fir_filter.cc b/gr-filter/lib/fir_filter.cc
index d7a0a0c70..d5cf3cd54 100644
--- a/gr-filter/lib/fir_filter.cc
+++ b/gr-filter/lib/fir_filter.cc
@@ -424,7 +424,7 @@ namespace gr {
volk_32fc_x2_dot_prod_32fc_a(d_output, ar,
d_aligned_taps[al],
- (d_ntaps+al)*sizeof(gr_complex));
+ (d_ntaps+al));
return *d_output;
}
diff --git a/gr-filter/lib/fir_filter_with_buffer.cc b/gr-filter/lib/fir_filter_with_buffer.cc
index 181630d48..7c37361c1 100644
--- a/gr-filter/lib/fir_filter_with_buffer.cc
+++ b/gr-filter/lib/fir_filter_with_buffer.cc
@@ -287,7 +287,7 @@ namespace gr {
volk_32fc_x2_dot_prod_32fc_a(d_output, ar,
d_aligned_taps[al],
- (ntaps()+al)*sizeof(gr_complex));
+ (ntaps()+al));
return *d_output;
}
@@ -310,7 +310,7 @@ namespace gr {
volk_32fc_x2_dot_prod_32fc_a(d_output, ar,
d_aligned_taps[al],
- (ntaps()+al)*sizeof(gr_complex));
+ (ntaps()+al));
return *d_output;
}