| 7 | namespace engine::audio { |
| 8 | |
| 9 | std::string WavPcm16Sink::family() const { |
| 10 | return "wav_pcm16"; |
| 11 | } |
| 12 | |
| 13 | void WavPcm16Sink::write(const std::filesystem::path & path, const AudioBuffer & audio) const { |
| 14 | write_pcm16_wav(path, audio.sample_rate, audio.channel_count, audio.samples); |
no outgoing calls
no test coverage detected