///////////////////////////////////////////////////////
| 81 | |
| 82 | //////////////////////////////////////////////////////////// |
| 83 | void OutputSoundFile::write(const std::int16_t* samples, std::uint64_t count) |
| 84 | { |
| 85 | assert(m_writer); |
| 86 | |
| 87 | if (samples && count) |
| 88 | m_writer->write(samples, count); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected