| 31 | } |
| 32 | |
| 33 | int64_t SampleCountToLength(int64_t count, int channels) { |
| 34 | return count * channels * 2; |
| 35 | } |
| 36 | |
| 37 | int64_t SampleTimeToLength(int64_t time, int sampleRate, int channels) { |
| 38 | int count = ceill(static_cast<double>(time * sampleRate) / 1000000.0); |
no outgoing calls
no test coverage detected