aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/Resampler.cpp
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2018-12-20 19:10:26 +0100
committerSylvain Munaut <tnt@246tNt.com>2019-01-21 10:34:51 +0100
commita3934a11a4a9cd7f510cc188192bf27302695ef5 (patch)
tree021d613ccf745d86803e4fcb4791ecedc9a2dcaf /Transceiver52M/Resampler.cpp
parentacf804c0347ac279e2909359a36f48e752d0e485 (diff)
convolve: Remove support for step, offset parameters
- Those are not used any where - Those are not supported by the sse/neon accelerated versions - And I see very little use cases for those. Change-Id: Ic850269a0ed5d98c0ea68980afd31016ed555b48 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'Transceiver52M/Resampler.cpp')
-rw-r--r--Transceiver52M/Resampler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/Resampler.cpp b/Transceiver52M/Resampler.cpp
index 6b9621c..ecd8865 100644
--- a/Transceiver52M/Resampler.cpp
+++ b/Transceiver52M/Resampler.cpp
@@ -143,7 +143,7 @@ int Resampler::rotate(const float *in, size_t in_len, float *out, size_t out_len
convolve_real(in, in_len,
reinterpret_cast<float *>(partitions[path]),
filt_len, &out[2 * i], out_len - i,
- n, 1, 1, 0);
+ n, 1);
}
return out_len;