зеркало из https://github.com/mozilla/gecko-dev.git
Bug 930189 Round up values when getting the minimum latency to avoid values of zero. Patch suggested by jesup. r=padenot
This commit is contained in:
Родитель
145d98f184
Коммит
b5814be473
|
@ -235,7 +235,7 @@ audiounit_get_min_latency(cubeb * ctx, cubeb_stream_params params, uint32_t * la
|
|||
return CUBEB_ERROR;
|
||||
}
|
||||
|
||||
*latency_ms = latency_range.mMinimum * 1000 / params.rate;
|
||||
*latency_ms = (latency_range.mMinimum * 1000 + params.rate - 1) / params.rate;
|
||||
|
||||
return CUBEB_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче