diff options
author | Chris Robinson <[email protected]> | 2017-08-16 18:09:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-16 18:09:53 -0700 |
commit | 5008024e73e7451c25a4c8729bfb636699615e8e (patch) | |
tree | e74f3f6fed16f70db6982d6819d2d347a708c7f2 /Alc/converter.c | |
parent | f9c09cc845b786705b43b39300d8706db7ab0054 (diff) |
Store the sinc4 table in the filter state
Also rename the resampler functions to remove the unnecessary '32' token.
Diffstat (limited to 'Alc/converter.c')
-rw-r--r-- | Alc/converter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/converter.c b/Alc/converter.c index 5cfe7031..304e9a80 100644 --- a/Alc/converter.c +++ b/Alc/converter.c @@ -29,7 +29,7 @@ SampleConverter *CreateSampleConverter(enum DevFmtType srcType, enum DevFmtType step = fastf2i(minf((ALdouble)srcRate / dstRate, MAX_PITCH)*FRACTIONONE + 0.5f); converter->mIncrement = maxi(step, 1); if(converter->mIncrement == FRACTIONONE) - converter->mResample = Resample_copy32_C; + converter->mResample = Resample_copy_C; else { /* TODO: Allow other resamplers. */ |