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