зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1155624 - Use std::max instead of max macro in cubeb_wasapi.cpp. r=kinetik
This commit is contained in:
Родитель
92c53b47b9
Коммит
d3b29e6cc5
|
@ -594,7 +594,7 @@ wasapi_stream_render_loop(LPVOID stream)
|
|||
if (SUCCEEDED(hr)) {
|
||||
double playing_frame = stm->mix_params.rate * (double)position / stm->device_frequency;
|
||||
double last_written_frame = stm->clock - stm->base_clock;
|
||||
latency_set(stm, max(last_written_frame - playing_frame, 0));
|
||||
latency_set(stm, std::max(last_written_frame - playing_frame, 0.0));
|
||||
}
|
||||
|
||||
if (stm->draining) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче