| 179 | } |
| 180 | |
| 181 | int AudioDecoder::GetVolume() const { |
| 182 | return static_cast<int>(log_volume); |
| 183 | } |
| 184 | |
| 185 | void AudioDecoder::SetVolume(int new_volume) { |
| 186 | volume = Utils::Clamp(static_cast<float>(new_volume), 0.0f, 100.0f); |
no outgoing calls
no test coverage detected