Searched refs:isGoog (Results 1 – 1 of 1) sorted by relevance
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | MediaUtils.java | 226 boolean isEncoder, Boolean isGoog, MediaFormat... formats) { in getCodecNames() argument 236 if (isGoog != null && isGoogle(info.getName()) != isGoog) { in getCodecNames() 259 public static String[] getDecoderNames(/* Nullable */ Boolean isGoog, MediaFormat... formats) { in getDecoderNames() argument 260 return getCodecNames(false /* isEncoder */, isGoog, formats); in getDecoderNames() 268 public static String[] getEncoderNames(/* Nullable */ Boolean isGoog, MediaFormat... formats) { in getEncoderNames() argument 269 return getCodecNames(true /* isEncoder */, isGoog, formats); in getEncoderNames() 289 int count, boolean isEncoder, Boolean isGoog, MediaFormat... formats) { in verifyNumCodecs() argument 292 if (isGoog != null) { in verifyNumCodecs() 293 desc = (isGoog ? "Google " : "non-Google ") + desc; in verifyNumCodecs() 296 String[] codecs = getCodecNames(isEncoder, isGoog, formats); in verifyNumCodecs()
|