Rmeove unused variable in Mp4Extractor and HeifExtractor.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=181135589
This commit is contained in:
parent
4867748c50
commit
c991b80c85
@ -370,7 +370,6 @@ public final class Mp4Extractor implements Extractor, SeekMap {
|
|||||||
int firstVideoTrackIndex = C.INDEX_UNSET;
|
int firstVideoTrackIndex = C.INDEX_UNSET;
|
||||||
long durationUs = C.TIME_UNSET;
|
long durationUs = C.TIME_UNSET;
|
||||||
List<Mp4Track> tracks = new ArrayList<>();
|
List<Mp4Track> tracks = new ArrayList<>();
|
||||||
long earliestSampleOffset = Long.MAX_VALUE;
|
|
||||||
|
|
||||||
Metadata metadata = null;
|
Metadata metadata = null;
|
||||||
GaplessInfoHolder gaplessInfoHolder = new GaplessInfoHolder();
|
GaplessInfoHolder gaplessInfoHolder = new GaplessInfoHolder();
|
||||||
@ -423,11 +422,6 @@ public final class Mp4Extractor implements Extractor, SeekMap {
|
|||||||
firstVideoTrackIndex = tracks.size();
|
firstVideoTrackIndex = tracks.size();
|
||||||
}
|
}
|
||||||
tracks.add(mp4Track);
|
tracks.add(mp4Track);
|
||||||
|
|
||||||
long firstSampleOffset = trackSampleTable.offsets[0];
|
|
||||||
if (firstSampleOffset < earliestSampleOffset) {
|
|
||||||
earliestSampleOffset = firstSampleOffset;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
this.firstVideoTrackIndex = firstVideoTrackIndex;
|
this.firstVideoTrackIndex = firstVideoTrackIndex;
|
||||||
this.durationUs = durationUs;
|
this.durationUs = durationUs;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user