| 2916 | } |
| 2917 | |
| 2918 | ChannelGroupSampleView |
| 2919 | WaveTrack::GetSampleView(double t0, double t1, bool mayThrow) const |
| 2920 | { |
| 2921 | ChannelGroupSampleView result; |
| 2922 | for (const auto& channel : Channels()) { |
| 2923 | result.push_back(channel->GetSampleView(t0, t1, mayThrow)); |
| 2924 | } |
| 2925 | return result; |
| 2926 | } |
| 2927 | |
| 2928 | ChannelSampleView |
| 2929 | WaveChannel::GetSampleView(double t0, double t1, bool mayThrow) const |
nothing calls this directly
no test coverage detected