diff --git a/src/pulsecore/resampler.c b/src/pulsecore/resampler.c index bf3fdb872..b683b0571 100644 --- a/src/pulsecore/resampler.c +++ b/src/pulsecore/resampler.c @@ -685,6 +685,11 @@ int pa_resample_method_supported(pa_resample_method_t m) { return 0; #endif +#ifndef HAVE_SOXR + if (m >= PA_RESAMPLER_SOXR_MQ && m <= PA_RESAMPLER_SOXR_VHQ) + return 0; +#endif + return 1; }