| 3460 | } |
| 3461 | |
| 3462 | bool WaveTrack::SetFloats(const float *const *buffers, |
| 3463 | sampleCount start, size_t len, sampleFormat effectiveFormat) |
| 3464 | { |
| 3465 | bool result = true; |
| 3466 | size_t ii = 0; |
| 3467 | for (const auto &pChannel : Channels()) { |
| 3468 | const auto buffer = buffers[ii++]; |
| 3469 | assert(buffer); // precondition |
| 3470 | result = pChannel->SetFloats(buffer, start, len, effectiveFormat) |
| 3471 | && result; |
| 3472 | } |
| 3473 | return result; |
| 3474 | } |
| 3475 | |
| 3476 | auto WaveTrack::SortedClipArray() const -> IntervalConstHolders |
| 3477 | { |
no test coverage detected