TODO: Risky? Assumes 0.0f is represented by 0x00000000;
| 73 | |
| 74 | // TODO: Risky? Assumes 0.0f is represented by 0x00000000; |
| 75 | void ClearSamples(samplePtr dst, sampleFormat format, |
| 76 | size_t start, size_t len) |
| 77 | { |
| 78 | auto size = SAMPLE_SIZE(format); |
| 79 | memset(dst + start*size, 0, len*size); |
| 80 | } |
| 81 | |
| 82 | void ReverseSamples(samplePtr dst, sampleFormat format, |
| 83 | int start, int len) |
no outgoing calls
no test coverage detected