Home
last modified time | relevance | path

Searched refs:trackCount (Results 1 – 7 of 7) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DProgressiveMediaPeriod.java328 int trackCount = sampleQueues.length; in discardBuffer() local
329 for (int i = 0; i < trackCount; i++) { in discardBuffer()
391 int trackCount = sampleQueues.length; in getBufferedPositionUs() local
392 for (int i = 0; i < trackCount; i++) { in getBufferedPositionUs()
683 int trackCount = sampleQueues.length; in prepareTrackOutput() local
684 for (int i = 0; i < trackCount; i++) { in prepareTrackOutput()
697 TrackId[] sampleQueueTrackIds = Arrays.copyOf(this.sampleQueueTrackIds, trackCount + 1); in prepareTrackOutput()
698 sampleQueueTrackIds[trackCount] = id; in prepareTrackOutput()
700 @NullableType SampleQueue[] sampleQueues = Arrays.copyOf(this.sampleQueues, trackCount + 1); in prepareTrackOutput()
701 sampleQueues[trackCount] = trackOutput; in prepareTrackOutput()
[all …]
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/
DFragmentedMp4Extractor.java289 int trackCount = trackBundles.size(); in seek() local
290 for (int i = 0; i < trackCount; i++) { in seek()
370 int trackCount = trackBundles.size(); in readAtomHeader() local
371 for (int i = 0; i < trackCount; i++) { in readAtomHeader()
504 int trackCount = tracks.size(); in onMoovContainerAtomRead() local
507 for (int i = 0; i < trackCount; i++) { in onMoovContainerAtomRead()
517 Assertions.checkState(trackBundles.size() == trackCount); in onMoovContainerAtomRead()
518 for (int i = 0; i < trackCount; i++) { in onMoovContainerAtomRead()
547 int trackCount = trackBundles.size(); in onMoofContainerAtomRead() local
548 for (int i = 0; i < trackCount; i++) { in onMoofContainerAtomRead()
[all …]
DMp4Extractor.java412 int trackCount = trackSampleTables.size(); in processMoovAtom() local
413 for (int i = 0; i < trackCount; i++) { in processMoovAtom()
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DHlsSampleStreamWrapper.java910 int trackCount = sampleQueues.length;
928 sampleQueueTrackIds = Arrays.copyOf(sampleQueueTrackIds, trackCount + 1);
929 sampleQueueTrackIds[trackCount] = id;
931 sampleQueueIsAudioVideoFlags = Arrays.copyOf(sampleQueueIsAudioVideoFlags, trackCount + 1);
932 sampleQueueIsAudioVideoFlags[trackCount] = isAudioVideo;
933 haveAudioVideoSampleQueues |= sampleQueueIsAudioVideoFlags[trackCount];
935 sampleQueueIndicesByType.append(type, trackCount);
937 primarySampleQueueIndex = trackCount;
940 sampleQueuesEnabledStates = Arrays.copyOf(sampleQueuesEnabledStates, trackCount + 1);
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/trackselection/
DMappingTrackSelector.java270 int trackCount = rendererTrackGroups[rendererIndex].get(groupIndex).length; in getAdaptiveSupport() local
272 int[] trackIndices = new int[trackCount]; in getAdaptiveSupport()
274 for (int i = 0; i < trackCount; i++) { in getAdaptiveSupport()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DTrackSelectionView.java391 int trackCount = 0; in getTracksRemoving() local
394 newTracks[trackCount++] = track; in getTracksRemoving()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/
DEventLogger.java581 int trackCount, @AdaptiveSupport int adaptiveSupport) { in getAdaptiveSupportString() argument
582 if (trackCount < 2) { in getAdaptiveSupportString()