diff options
Diffstat (limited to 'core/converter.cpp')
-rw-r--r-- | core/converter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/converter.cpp b/core/converter.cpp index 69e0d8dd..75c37149 100644 --- a/core/converter.cpp +++ b/core/converter.cpp @@ -156,7 +156,7 @@ void Multi2Mono(uint chanmask, const size_t step, const float scale, float *REST } // namespace -SampleConverterPtr CreateSampleConverter(DevFmtType srcType, DevFmtType dstType, size_t numchans, +SampleConverterPtr SampleConverter::Create(DevFmtType srcType, DevFmtType dstType, size_t numchans, uint srcRate, uint dstRate, Resampler resampler) { if(numchans < 1 || srcRate < 1 || dstRate < 1) |