mirror of
https://github.com/radio95-rnt/fm95.git
synced 2026-07-31 16:59:16 +02:00
fix name
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ float apply_preemphasis(ResistorCapacitor *filter, float sample) {
|
|||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
float hard_clip_fast(float sample, float threshold) {
|
float hard_clip(float sample, float threshold) {
|
||||||
// Branchless clipping
|
// Branchless clipping
|
||||||
return fmaxf(-threshold, fminf(threshold, sample));
|
return fmaxf(-threshold, fminf(threshold, sample));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user