| 33 | namespace { |
| 34 | |
| 35 | static audio::Sample makeSample_Adversarial(float freq, fl::u32 timestamp, float amplitude = 16000.0f) { |
| 36 | return makeSample(freq, timestamp, amplitude); |
| 37 | } |
| 38 | |
| 39 | // Safe NaN check that doesn't rely on isnan |
| 40 | static bool isNaN(float x) { |
no test coverage detected