Fix builds on non-SSE platforms

This commit is contained in:
Paul Ferrand 2019-12-19 19:14:48 +01:00
parent 207e45cee9
commit b06724ce01

View file

@ -24,17 +24,17 @@
#include "Oversampler.h" #include "Oversampler.h"
template<> template<>
inline void sfz::upsample2xStage<true>(absl::Span<const float> input, absl::Span<float> output) void sfz::upsample2xStage<true>(absl::Span<const float> input, absl::Span<float> output)
{ {
sfz::upsample2xStage<false>(input, output); sfz::upsample2xStage<false>(input, output);
} }
template<> template<>
inline void sfz::upsample4xStage<true>(absl::Span<const float> input, absl::Span<float> output) void sfz::upsample4xStage<true>(absl::Span<const float> input, absl::Span<float> output)
{ {
sfz::upsample4xStage<false>(input, output); sfz::upsample4xStage<false>(input, output);
} }
template<> template<>
inline void sfz::upsample8xStage<true>(absl::Span<const float> input, absl::Span<float> output) void sfz::upsample8xStage<true>(absl::Span<const float> input, absl::Span<float> output)
{ {
sfz::upsample8xStage<false>(input, output); sfz::upsample8xStage<false>(input, output);
} }