Home
last modified time | relevance | path

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

/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java75 private static final String VP8 = MediaFormat.MIMETYPE_VIDEO_VP8; field in VideoEncoderDecoderTest
434 public void testVp8Count0320x0180() throws Exception { count(VP8, 320, 180, 1, 2); } in testVp8Count0320x0180()
435 public void testVp8Goog0Qual0320x0180() throws Exception { qual(VP8, 320, 180, GOOG, 0); } in testVp8Goog0Qual0320x0180()
436 public void testVp8Goog0Perf0320x0180() throws Exception { perf(VP8, 320, 180, GOOG, 0); } in testVp8Goog0Perf0320x0180()
437 public void testVp8Other0Qual0320x0180() throws Exception { qual(VP8, 320, 180, OTHER, 0); } in testVp8Other0Qual0320x0180()
438 public void testVp8Other0Perf0320x0180() throws Exception { perf(VP8, 320, 180, OTHER, 0); } in testVp8Other0Perf0320x0180()
439 public void testVp8Other1Qual0320x0180() throws Exception { qual(VP8, 320, 180, OTHER, 1); } in testVp8Other1Qual0320x0180()
440 public void testVp8Other1Perf0320x0180() throws Exception { perf(VP8, 320, 180, OTHER, 1); } in testVp8Other1Perf0320x0180()
441 public void testVp8Count0640x0360() throws Exception { count(VP8, 640, 360, 1, 2); } in testVp8Count0640x0360()
442 public void testVp8Goog0Qual0640x0360() throws Exception { qual(VP8, 640, 360, GOOG, 0); } in testVp8Goog0Qual0640x0360()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DAdaptivePlaybackTest.java93 public Iterable<Codec> VP8(CodecFactory factory) { in VP8() method in AdaptivePlaybackTest
119 public Iterable<Codec> VP8() { return VP8(ALL); } in VP8() 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()
188 public void runVP8() { ex(VP8(), allTests); } in runVP8()
195 public void onlyVP8HW() { ex(VP8(HW), allTests); } in onlyVP8HW()
202 public void onlyVP8SW() { ex(VP8(SW), allTests); } in onlyVP8SW()
213 public void testVP8_adaptiveEarlyEos() { ex(VP8(), adaptiveEarlyEos); } in testVP8_adaptiveEarlyEos()
220 public void testVP8_adaptiveEosFlushSeek() { ex(VP8(), adaptiveEosFlushSeek); } in testVP8_adaptiveEosFlushSeek()
[all …]
DVideoDecoderPerfTest.java57 private static final String VP8 = MediaFormat.MIMETYPE_VIDEO_VP8; field in VideoDecoderPerfTest