Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DMimeTypes.java115 CustomMimeType customMimeType = new CustomMimeType(mimeType, codecPrefix, trackType); in registerCustomMimeType() local
123 customMimeTypes.add(customMimeType); in registerCustomMimeType()
461 CustomMimeType customMimeType = customMimeTypes.get(i); in getCustomMimeTypeForCodec() local
462 if (codec.startsWith(customMimeType.codecPrefix)) { in getCustomMimeTypeForCodec()
463 return customMimeType.mimeType; in getCustomMimeTypeForCodec()
472 CustomMimeType customMimeType = customMimeTypes.get(i); in getTrackTypeForCustomMimeType() local
473 if (mimeType.equals(customMimeType.mimeType)) { in getTrackTypeForCustomMimeType()
474 return customMimeType.trackType; in getTrackTypeForCustomMimeType()