diff -upr mumble-1.4.230.orig/src/mumble/AudioInput.cpp mumble-1.4.230/src/mumble/AudioInput.cpp --- mumble-1.4.230.orig/src/mumble/AudioInput.cpp 2022-01-19 20:46:46.821208697 +0100 +++ mumble-1.4.230/src/mumble/AudioInput.cpp 2022-01-19 20:47:13.024658224 +0100 @@ -32,11 +32,13 @@ extern "C" { #include #include +#ifdef USE_RNNOISE /// Clip the given float value to a range that can be safely converted into a short (without causing integer overflow) static short clampFloatSample(float v) { return static_cast< short >(std::min(std::max(v, static_cast< float >(std::numeric_limits< short >::min())), static_cast< float >(std::numeric_limits< short >::max()))); } +#endif void Resynchronizer::addMic(short *mic) { bool drop = false;