Home
last modified time | relevance | path

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

/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java76 private static final String VP9 = MediaFormat.MIMETYPE_VIDEO_VP9; field in VideoEncoderDecoderTest
464 public void testVp9Count0320x0180() throws Exception { count(VP9, 320, 180, 1, 4); } in testVp9Count0320x0180()
465 public void testVp9Goog0Qual0320x0180() throws Exception { qual(VP9, 320, 180, GOOG, 0); } in testVp9Goog0Qual0320x0180()
466 public void testVp9Goog0Perf0320x0180() throws Exception { perf(VP9, 320, 180, GOOG, 0); } in testVp9Goog0Perf0320x0180()
467 public void testVp9Other0Qual0320x0180() throws Exception { qual(VP9, 320, 180, OTHER, 0); } in testVp9Other0Qual0320x0180()
468 public void testVp9Other0Perf0320x0180() throws Exception { perf(VP9, 320, 180, OTHER, 0); } in testVp9Other0Perf0320x0180()
469 public void testVp9Other1Qual0320x0180() throws Exception { qual(VP9, 320, 180, OTHER, 1); } in testVp9Other1Qual0320x0180()
470 public void testVp9Other1Perf0320x0180() throws Exception { perf(VP9, 320, 180, OTHER, 1); } in testVp9Other1Perf0320x0180()
471 public void testVp9Other2Qual0320x0180() throws Exception { qual(VP9, 320, 180, OTHER, 2); } in testVp9Other2Qual0320x0180()
472 public void testVp9Other2Perf0320x0180() throws Exception { perf(VP9, 320, 180, OTHER, 2); } in testVp9Other2Perf0320x0180()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DAdaptivePlaybackTest.java103 public Iterable<Codec> VP9(CodecFactory factory) { in VP9() method in AdaptivePlaybackTest
120 public Iterable<Codec> VP9() { return VP9(ALL); } in VP9() method in AdaptivePlaybackTest
125 return chain(H264(ALL), HEVC(ALL), VP8(ALL), VP9(ALL), Mpeg4(ALL), H263(ALL)); in AllCodecs()
129 return chain(H264(SW), HEVC(SW), VP8(SW), VP9(SW), Mpeg4(SW), H263(SW)); in SWCodecs()
133 return chain(H264(HW), HEVC(HW), VP8(HW), VP9(HW), Mpeg4(HW), H263(HW)); in HWCodecs()
189 public void runVP9() { ex(VP9(), allTests); } in runVP9()
196 public void onlyVP9HW() { ex(VP9(HW), allTests); } in onlyVP9HW()
203 public void onlyVP9SW() { ex(VP9(SW), allTests); } in onlyVP9SW()
214 public void testVP9_adaptiveEarlyEos() { ex(VP9(), adaptiveEarlyEos); } in testVP9_adaptiveEarlyEos()
221 public void testVP9_adaptiveEosFlushSeek() { ex(VP9(), adaptiveEosFlushSeek); } in testVP9_adaptiveEosFlushSeek()
[all …]
DVideoDecoderPerfTest.java57 private static final String VP9 = MediaFormat.MIMETYPE_VIDEO_VP9; field in VideoDecoderPerfTest