diff options
Diffstat (limited to 'src/pulsecore/resampler.c')
-rw-r--r-- | src/pulsecore/resampler.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/pulsecore/resampler.c b/src/pulsecore/resampler.c index c1af401c..d98d482d 100644 --- a/src/pulsecore/resampler.c +++ b/src/pulsecore/resampler.c @@ -160,13 +160,8 @@ pa_resampler* pa_resampler_new( resample_method = PA_RESAMPLER_AUTO; } - if (resample_method == PA_RESAMPLER_AUTO) { - if (a->format == PA_SAMPLE_FLOAT32LE || a->format == PA_SAMPLE_FLOAT32BE || - b->format == PA_SAMPLE_FLOAT32LE || b->format == PA_SAMPLE_FLOAT32BE) - resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 0; - else - resample_method = PA_RESAMPLER_SPEEX_FIXED_BASE + 0; - } + if (resample_method == PA_RESAMPLER_AUTO) + resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 0; r = pa_xnew(pa_resampler, 1); r->mempool = pool; |