This commit is contained in:
2025-12-29 23:03:53 +01:00
parent 1d9cbf7893
commit 3db33fef70
+1 -1
View File
@@ -24,7 +24,7 @@ void init_bs412(BS412Compressor* mpx, uint32_t mpx_deviation, float target_power
#endif
}
inline float soft_clip_tanh(float sample, float threshold) {
static inline float soft_clip_tanh(float sample, float threshold) {
if (fabsf(sample) <= threshold) {
return sample; // Linear region
}