! @excsafety{Partial} -- Some prefix (maybe none) of the buffer is appended, and no content already flushed to disk is lost. */
| 2401 | -- Some prefix (maybe none) of the buffer is appended, |
| 2402 | and no content already flushed to disk is lost. */ |
| 2403 | bool WaveChannel::AppendBuffer(constSamplePtr buffer, sampleFormat format, |
| 2404 | size_t len, unsigned stride, sampleFormat effectiveFormat) |
| 2405 | { |
| 2406 | const size_t iChannel = GetChannelIndex(); |
| 2407 | return GetTrack() |
| 2408 | .Append(iChannel, buffer, format, len, stride, effectiveFormat); |
| 2409 | } |
| 2410 | |
| 2411 | /*! @excsafety{Partial} |
| 2412 | -- Some prefix (maybe none) of the buffer is appended, |
no test coverage detected