| 107 | } |
| 108 | |
| 109 | void CopySamples(constSamplePtr src, sampleFormat srcFormat, |
| 110 | samplePtr dst, sampleFormat dstFormat, size_t len, |
| 111 | DitherType ditherType, /* = gHighQualityDither */ |
| 112 | unsigned int srcStride /* = 1 */, |
| 113 | unsigned int dstStride /* = 1 */) |
| 114 | { |
| 115 | gDitherAlgorithm.Apply( |
| 116 | ditherType, |
| 117 | src, srcFormat, dst, dstFormat, len, srcStride, dstStride); |
| 118 | } |
no test coverage detected