Commit 97d9c94c by aquilescanta Committed by Oliver Woodman

Fix a typo and variable declaration order in Period

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=127441130
parent 553023e6
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment