mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
audioconvert: remove speex resampler
It's slower and less accurate then the native one.
This commit is contained in:
parent
447d1f94bf
commit
6f8268df40
5 changed files with 3 additions and 103 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue