| 201 | } |
| 202 | |
| 203 | bool WaveChannelUtilities::GetFloatAtTime(const WaveChannel &channel, |
| 204 | double t, float& value, bool mayThrow) |
| 205 | { |
| 206 | const auto clip = GetClipAtTime(channel, t); |
| 207 | if (!clip) |
| 208 | return false; |
| 209 | return GetFloatAtTime(*clip, t, value, mayThrow); |
| 210 | } |
| 211 | |
| 212 | bool WaveChannelUtilities::GetFloatAtTime(const Clip &clip, |
| 213 | double t, float& value, bool mayThrow) |
nothing calls this directly
no test coverage detected