| 88 | } |
| 89 | |
| 90 | void AudioParam::calculateSampleAccurateValues(ContextRenderLock & r, float * values, int numberOfValues) |
| 91 | { |
| 92 | bool isSafe = r.context() && values && numberOfValues; |
| 93 | if (!isSafe) |
| 94 | return; |
| 95 | |
| 96 | calculateFinalValues(r, values, numberOfValues, true); |
| 97 | } |
| 98 | |
| 99 | void AudioParam::calculateFinalValues(ContextRenderLock & r, float * values, int numberOfValues, bool sampleAccurate) |
| 100 | { |
no test coverage detected