Searched refs:CodecKey (Results 1 – 1 of 1) sorted by relevance
/packages/apps/TV/tuner/src/com/google/android/exoplayer/ |
D | MediaSoftwareCodecUtil.java | 47 private static final HashMap<CodecKey, Pair<String, MediaCodecInfo.CodecCapabilities>> 66 CodecKey key = new CodecKey(mimeType, secure); in getMediaSoftwareCodecInfo() 90 CodecKey key, MediaCodecListCompat mediaCodecList) throws DecoderQueryException { in getMediaSoftwareCodecInfo() 101 CodecKey key, MediaCodecListCompat mediaCodecList) { in getMediaSoftwareCodecInfoInternal() 124 key.secure ? new CodecKey(mimeType, false) : key, in getMediaSoftwareCodecInfoInternal() 128 key.secure ? key : new CodecKey(mimeType, true), in getMediaSoftwareCodecInfoInternal() 135 key.secure == secure ? key : new CodecKey(mimeType, secure), in getMediaSoftwareCodecInfoInternal() 242 private static final class CodecKey { class in MediaSoftwareCodecUtil 247 public CodecKey(String mimeType, boolean secure) { in CodecKey() method in MediaSoftwareCodecUtil.CodecKey 266 if (!(obj instanceof CodecKey)) { in equals() [all …]
|