Home
last modified time | relevance | path

Searched refs:manifestFormat (Results 1 – 5 of 5) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/chunk/
DChunkExtractorWrapper.java172 @Nullable private final Format manifestFormat; field in ChunkExtractorWrapper.BindingTrackOutput
179 public BindingTrackOutput(int id, int type, @Nullable Format manifestFormat) { in BindingTrackOutput() argument
182 this.manifestFormat = manifestFormat; in BindingTrackOutput()
201 manifestFormat != null ? format.withManifestFormatInfo(manifestFormat) : format; in format()
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/
DFormat.java1360 public Format copyWithManifestFormatInfo(Format manifestFormat) { in copyWithManifestFormatInfo() argument
1361 return withManifestFormatInfo(manifestFormat); in copyWithManifestFormatInfo()
1365 public Format withManifestFormatInfo(Format manifestFormat) { in withManifestFormatInfo() argument
1366 if (this == manifestFormat) { in withManifestFormatInfo()
1374 @Nullable String id = manifestFormat.id; in withManifestFormatInfo()
1377 @Nullable String label = manifestFormat.label != null ? manifestFormat.label : this.label; in withManifestFormatInfo()
1380 && manifestFormat.language != null) { in withManifestFormatInfo()
1381 language = manifestFormat.language; in withManifestFormatInfo()
1386 this.averageBitrate == NO_VALUE ? manifestFormat.averageBitrate : this.averageBitrate; in withManifestFormatInfo()
1387 int peakBitrate = this.peakBitrate == NO_VALUE ? manifestFormat.peakBitrate : this.peakBitrate; in withManifestFormatInfo()
[all …]
/external/exoplayer/tree/library/smoothstreaming/src/main/java/com/google/android/exoplayer2/source/smoothstreaming/
DSsMediaPeriod.java268 Format manifestFormat = manifestFormats[j]; in buildTrackGroups() local
270 manifestFormat.drmInitData != null in buildTrackGroups()
271 ? manifestFormat.copyWithExoMediaCryptoType( in buildTrackGroups()
272 drmSessionManager.getExoMediaCryptoType(manifestFormat.drmInitData)) in buildTrackGroups()
273 : manifestFormat; in buildTrackGroups()
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java96 Format manifestFormat = representation.format; in loadDrmInitData() local
99 ? manifestFormat.drmInitData in loadDrmInitData()
100 : sampleFormat.withManifestFormatInfo(manifestFormat).drmInitData; in loadDrmInitData()
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DHlsSampleStreamWrapper.java1333 private static boolean formatsMatch(Format manifestFormat, Format sampleFormat) {
1334 @Nullable String manifestFormatMimeType = manifestFormat.sampleMimeType;
1344 return manifestFormat.accessibilityChannel == sampleFormat.accessibilityChannel;