| 90 | } |
| 91 | |
| 92 | void vsvesq(const float * sourceP, int sourceStride, float * sumP, int framesToProcess) |
| 93 | { |
| 94 | vDSP_svesq(const_cast<float *>(sourceP), sourceStride, sumP, framesToProcess); |
| 95 | } |
| 96 | |
| 97 | void vclip(const float * sourceP, int sourceStride, const float * lowThresholdP, const float * highThresholdP, float * destP, int destStride, int framesToProcess) |
| 98 | { |
no outgoing calls
no test coverage detected