///////////////////////////////////////////////////////
| 41 | { |
| 42 | //////////////////////////////////////////////////////////// |
| 43 | OutputSoundFile::OutputSoundFile(const std::filesystem::path& filename, |
| 44 | unsigned int sampleRate, |
| 45 | unsigned int channelCount, |
| 46 | const std::vector<SoundChannel>& channelMap) |
| 47 | { |
| 48 | if (!openFromFile(filename, sampleRate, channelCount, channelMap)) |
| 49 | throw Exception("Failed to open output sound file"); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected