| 215 | } |
| 216 | |
| 217 | static void |
| 218 | InterleaveDsfBlock(std::byte *gcc_restrict dest, const std::byte *gcc_restrict src, |
| 219 | unsigned channels) |
| 220 | { |
| 221 | if (channels == 1) |
| 222 | InterleaveDsfBlockMono(dest, src); |
| 223 | else if (channels == 2) |
| 224 | InterleaveDsfBlockStereo(dest, src); |
| 225 | else |
| 226 | InterleaveDsfBlockGeneric(dest, src, channels); |
| 227 | } |
| 228 | |
| 229 | static offset_type |
| 230 | FrameToBlock(uint64_t frame) |
no test coverage detected