Home
last modified time | relevance | path

Searched refs:adaptationSet (Results 1 – 6 of 6) sorted by relevance

/external/exoplayer/tree/library/dash/src/test/java/com/google/android/exoplayer2/source/dash/manifest/
DDashManifestParserTest.java85 for (AdaptationSet adaptationSet : period.adaptationSets) { in parseMediaPresentationDescription_segmentTemplate()
86 assertThat(adaptationSet).isNotNull(); in parseMediaPresentationDescription_segmentTemplate()
87 for (Representation representation : adaptationSet.representations) { in parseMediaPresentationDescription_segmentTemplate()
240 AdaptationSet adaptationSet = adaptationSets.get(0); in parseMediaPresentationDescription_trickPlay() local
241 assertThat(adaptationSet.essentialProperties).isEmpty(); in parseMediaPresentationDescription_trickPlay()
242 assertThat(adaptationSet.supplementalProperties).isEmpty(); in parseMediaPresentationDescription_trickPlay()
243 assertThat(adaptationSet.representations.get(0).format.roleFlags).isEqualTo(0); in parseMediaPresentationDescription_trickPlay()
245 adaptationSet = adaptationSets.get(1); in parseMediaPresentationDescription_trickPlay()
246 assertThat(adaptationSet.essentialProperties).isEmpty(); in parseMediaPresentationDescription_trickPlay()
247 assertThat(adaptationSet.supplementalProperties).isEmpty(); in parseMediaPresentationDescription_trickPlay()
[all …]
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DDashManifest.java217 AdaptationSet adaptationSet = adaptationSets.get(adaptationSetIndex); in copyAdaptationSets() local
219 List<Representation> representations = adaptationSet.representations; in copyAdaptationSets()
229 adaptationSet.id, in copyAdaptationSets()
230 adaptationSet.type, in copyAdaptationSets()
232 adaptationSet.accessibilityDescriptors, in copyAdaptationSets()
233 adaptationSet.essentialProperties, in copyAdaptationSets()
234 adaptationSet.supplementalProperties)); in copyAdaptationSets()
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java129 AdaptationSet adaptationSet, in addSegmentsForAdaptationSet() argument
135 for (int i = 0; i < adaptationSet.representations.size(); i++) { in addSegmentsForAdaptationSet()
136 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet()
139 index = getSegmentIndex(dataSource, adaptationSet.type, representation); in addSegmentsForAdaptationSet()
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashMediaPeriod.java554 AdaptationSet adaptationSet = adaptationSets.get(i); in getGroupedAdaptationSetIndices() local
558 Descriptor trickPlayProperty = findTrickPlayProperty(adaptationSet.essentialProperties); in getGroupedAdaptationSetIndices()
561 trickPlayProperty = findTrickPlayProperty(adaptationSet.supplementalProperties); in getGroupedAdaptationSetIndices()
577 findAdaptationSetSwitchingProperty(adaptationSet.supplementalProperties); in getGroupedAdaptationSetIndices()
830 AdaptationSet adaptationSet = adaptationSets.get(i); in getCea608TrackFormats() local
838 return new Format[] {buildCea608TrackFormat(adaptationSet.id)}; in getCea608TrackFormats()
846 return new Format[] {buildCea608TrackFormat(adaptationSet.id)}; in getCea608TrackFormats()
850 adaptationSet.id, in getCea608TrackFormats()
DDashMediaSource.java1155 AdaptationSet adaptationSet = period.adaptationSets.get(i); in createPeriodSeekInfo() local
1158 if (haveAudioVideoAdaptationSets && adaptationSet.type == C.TRACK_TYPE_TEXT) { in createPeriodSeekInfo()
1162 DashSegmentIndex index = adaptationSet.representations.get(0).getIndex(); in createPeriodSeekInfo()
/external/exoplayer/tree/playbacktests/src/androidTest/java/com/google/android/exoplayer2/playbacktests/gts/
DDashDownloadTest.java108 AdaptationSet adaptationSet = adaptationSets.get(aIndex); in downloadContent() local
109 List<Representation> representations = adaptationSet.representations; in downloadContent()