0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00
This commit is contained in:
2025-12-29 23:03:53 +01:00
parent 1d9cbf7893
commit 3db33fef70

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
}