| 95 | } |
| 96 | |
| 97 | void vclip(const float * sourceP, int sourceStride, const float * lowThresholdP, const float * highThresholdP, float * destP, int destStride, int framesToProcess) |
| 98 | { |
| 99 | vDSP_vclip(const_cast<float *>(sourceP), sourceStride, const_cast<float *>(lowThresholdP), const_cast<float *>(highThresholdP), destP, destStride, framesToProcess); |
| 100 | } |
| 101 | #else |
| 102 | |
| 103 | void vsma(const float * sourceP, int sourceStride, const float * scale, float * destP, int destStride, int framesToProcess) |