Home
last modified time | relevance | path

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

/cts/tests/tests/media/src/android/media/cts/
DDecoderConformanceTest.java180 void decodeTestVectors(String mime, boolean isGoog) throws Exception { in decodeTestVectors() argument
183 String[] decoderNames = MediaUtils.getDecoderNames(isGoog, format); in decodeTestVectors()
205 mReportLog.addValue("is_goog", isGoog, ResultType.NEUTRAL, ResultUnit.NONE); in decodeTestVectors()
DVideoDecoderPerfTest.java316 private void perf(final String[] resources, boolean isGoog, int ix) throws Exception { in perf() argument
318 String[] decoders = MediaUtils.getDecoderNames(isGoog, formats); in perf()
319 String kind = isGoog ? "Google" : "non-Google"; in perf()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java211 boolean isEncoder, Boolean isGoog, MediaFormat... formats) { in getCodecNames() argument
221 if (isGoog != null && isGoogle(info.getName()) != isGoog) { in getCodecNames()
244 public static String[] getDecoderNames(/* Nullable */ Boolean isGoog, MediaFormat... formats) { in getDecoderNames() argument
245 return getCodecNames(false /* isEncoder */, isGoog, formats); in getDecoderNames()
253 public static String[] getEncoderNames(/* Nullable */ Boolean isGoog, MediaFormat... formats) { in getEncoderNames() argument
254 return getCodecNames(true /* isEncoder */, isGoog, formats); in getEncoderNames()
274 int count, boolean isEncoder, Boolean isGoog, MediaFormat... formats) { in verifyNumCodecs() argument
277 if (isGoog != null) { in verifyNumCodecs()
278 desc = (isGoog ? "Google " : "non-Google ") + desc; in verifyNumCodecs()
281 String[] codecs = getCodecNames(isEncoder, isGoog, formats); in verifyNumCodecs()
/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java178 private void perf(String mimeType, int w, int h, boolean isGoog, int ix) throws Exception { in perf() argument
179 doTest(mimeType, w, h, true /* isPerf */, isGoog, ix); in perf()
183 private void qual(String mimeType, int w, int h, boolean isGoog, int ix) throws Exception { in qual() argument
184 doTest(mimeType, w, h, false /* isPerf */, isGoog, ix); in qual()
188 private void qual(String mimeType, int w, int h, boolean isGoog, int ix, double margin) in qual() argument
191 doTest(mimeType, w, h, false /* isPerf */, isGoog, ix); in qual()
660 private void doTest(String mimeType, int w, int h, boolean isPerf, boolean isGoog, int ix) in doTest() argument
663 String[] encoderNames = MediaUtils.getEncoderNames(isGoog, format); in doTest()
664 String kind = isGoog ? "Google" : "non-Google"; in doTest()