audioconvert: remove speex resampler

It's slower and less accurate then the native one.
This commit is contained in:
Wim Taymans 2019-08-07 13:06:14 +02:00
parent 447d1f94bf
commit 6f8268df40
5 changed files with 3 additions and 103 deletions

View file

@ -39,7 +39,6 @@
#include "resample.h"
#include "resample-speex.h"
#include "resample-peaks.h"
#include "resample-native.h"
@ -163,10 +162,8 @@ static int setup_convert(struct impl *this,
if (this->peaks)
err = impl_peaks_init(&this->resample);
else if (1)
err = impl_native_init(&this->resample);
else
err = impl_speex_init(&this->resample);
err = impl_native_init(&this->resample);
return err;
}