mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix typo
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=188327736
This commit is contained in:
parent
81417e1093
commit
2675d03b30
1 changed files with 2 additions and 1 deletions
|
|
@ -237,7 +237,8 @@ public class DefaultLoadControl implements LoadControl {
|
||||||
boolean prioritizeTimeOverSizeThresholds,
|
boolean prioritizeTimeOverSizeThresholds,
|
||||||
PriorityTaskManager priorityTaskManager) {
|
PriorityTaskManager priorityTaskManager) {
|
||||||
assertGreaterOrEqual(bufferForPlaybackMs, 0, "bufferForPlaybackMs", "0");
|
assertGreaterOrEqual(bufferForPlaybackMs, 0, "bufferForPlaybackMs", "0");
|
||||||
assertGreaterOrEqual(bufferForPlaybackAfterRebufferMs, 0, "bufferForPlaybackMs", "0");
|
assertGreaterOrEqual(
|
||||||
|
bufferForPlaybackAfterRebufferMs, 0, "bufferForPlaybackAfterRebufferMs", "0");
|
||||||
assertGreaterOrEqual(minBufferMs, bufferForPlaybackMs, "minBufferMs", "bufferForPlaybackMs");
|
assertGreaterOrEqual(minBufferMs, bufferForPlaybackMs, "minBufferMs", "bufferForPlaybackMs");
|
||||||
assertGreaterOrEqual(
|
assertGreaterOrEqual(
|
||||||
minBufferMs,
|
minBufferMs,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue