Fix a typo and variable declaration order in Period
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=127441130
This commit is contained in:
parent
553023e63f
commit
97d9c94c1a
@ -1001,9 +1001,6 @@ import java.util.ArrayList;
|
||||
*/
|
||||
private static final class Period {
|
||||
|
||||
private final Renderer[] renderers;
|
||||
private final TrackSelector trackSelector;
|
||||
|
||||
public final MediaPeriod mediaPeriod;
|
||||
public final int index;
|
||||
public final SampleStream[] sampleStreams;
|
||||
@ -1014,6 +1011,9 @@ import java.util.ArrayList;
|
||||
public Period nextPeriod;
|
||||
public boolean needsContinueLoading;
|
||||
|
||||
private final Renderer[] renderers;
|
||||
private final TrackSelector trackSelector;
|
||||
|
||||
private Object trackSelectionData;
|
||||
private TrackSelectionArray trackSelections;
|
||||
private TrackSelectionArray periodTrackSelections;
|
||||
|
@ -18,7 +18,7 @@ package com.google.android.exoplayer2.source;
|
||||
import com.google.android.exoplayer2.C;
|
||||
|
||||
/**
|
||||
* An loader that can proceed in approximate synchronization with other loaders.
|
||||
* A loader that can proceed in approximate synchronization with other loaders.
|
||||
*/
|
||||
public interface SequenceableLoader {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user