From 782d5a53d9fcf37cc8a26496ce5e00965a6913a9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 25 Aug 2007 23:40:16 +0000 Subject: make floating point speex resampler the default git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1721 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/pulsecore/resampler.c | 9 ++------- 1 file 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; -- cgit