mirror of
https://github.com/samsonjs/media.git
synced 2026-04-03 10:55:48 +00:00
Fix typo in variable name.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=205405072
This commit is contained in:
parent
badd9356f8
commit
8be95042cc
1 changed files with 2 additions and 2 deletions
|
|
@ -316,10 +316,10 @@ import java.util.concurrent.CopyOnWriteArraySet;
|
|||
} else {
|
||||
long windowPositionUs = positionMs == C.TIME_UNSET
|
||||
? timeline.getWindow(windowIndex, window).getDefaultPositionUs() : C.msToUs(positionMs);
|
||||
Pair<Integer, Long> periodIndexAndPositon =
|
||||
Pair<Integer, Long> periodIndexAndPosition =
|
||||
timeline.getPeriodPosition(window, period, windowIndex, windowPositionUs);
|
||||
maskingWindowPositionMs = C.usToMs(windowPositionUs);
|
||||
maskingPeriodIndex = periodIndexAndPositon.first;
|
||||
maskingPeriodIndex = periodIndexAndPosition.first;
|
||||
}
|
||||
internalPlayer.seekTo(timeline, windowIndex, C.msToUs(positionMs));
|
||||
for (Player.EventListener listener : listeners) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue