| 35 | // our namespaced function names, so we must handle this case differently. Other architectures (64bit, ARM, etc.) do not include this header file. |
| 36 | |
| 37 | void vsmul(const float * sourceP, int sourceStride, const float * scale, float * destP, int destStride, int framesToProcess) |
| 38 | { |
| 39 | #if defined(__ppc__) || defined(__i386__) |
| 40 | ::vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); |
| 41 | #else |
| 42 | vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride, framesToProcess); |
| 43 | #endif |
| 44 | } |
| 45 | |
| 46 | void vadd(const float * source1P, int sourceStride1, const float * source2P, int sourceStride2, float * destP, int destStride, int framesToProcess) |
| 47 | { |
no outgoing calls
no test coverage detected