commit 82c85c8c84aa13d49cabbcc81264085f5a88beb1 parent a3f647166191123853a43ba6a8c26fdd0161d1ce Author: samuriddle@gmail.com <samuriddle@gmail.com> Date: Sun, 7 Aug 2016 07:20:50 +0300 KFR_ARCH_DEP for kfr::resampler Diffstat:
M | include/kfr/dsp/resample.hpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/dsp/resample.hpp b/include/kfr/dsp/resample.hpp @@ -50,7 +50,7 @@ KFR_SINTRIN T1 resample_blackman(T1 n, T2 a) return a0 - a1 * cos(n) + a2 * cos(2 * n); } -template <typename T, size_t quality> +template <typename T, size_t quality, KFR_ARCH_DEP> struct resampler { using itype = i64;