Home
last modified time | relevance | path

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

/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java72 private static final String HEVC = MediaFormat.MIMETYPE_VIDEO_HEVC; field in VideoEncoderDecoderTest
274 public void testHevcCount0320x0240() throws Exception { count(HEVC, 320, 240, 1, 4); } in testHevcCount0320x0240()
275 public void testHevcGoog0Qual0320x0240() throws Exception { qual(HEVC, 320, 240, GOOG, 0); } in testHevcGoog0Qual0320x0240()
276 public void testHevcGoog0Perf0320x0240() throws Exception { perf(HEVC, 320, 240, GOOG, 0); } in testHevcGoog0Perf0320x0240()
277 public void testHevcOther0Qual0320x0240() throws Exception { qual(HEVC, 320, 240, OTHER, 0); } in testHevcOther0Qual0320x0240()
278 public void testHevcOther0Perf0320x0240() throws Exception { perf(HEVC, 320, 240, OTHER, 0); } in testHevcOther0Perf0320x0240()
279 public void testHevcOther1Qual0320x0240() throws Exception { qual(HEVC, 320, 240, OTHER, 1); } in testHevcOther1Qual0320x0240()
280 public void testHevcOther1Perf0320x0240() throws Exception { perf(HEVC, 320, 240, OTHER, 1); } in testHevcOther1Perf0320x0240()
281 public void testHevcOther2Qual0320x0240() throws Exception { qual(HEVC, 320, 240, OTHER, 2); } in testHevcOther2Qual0320x0240()
282 public void testHevcOther2Perf0320x0240() throws Exception { perf(HEVC, 320, 240, OTHER, 2); } in testHevcOther2Perf0320x0240()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DAdaptivePlaybackTest.java63 public Iterable<Codec> HEVC(CodecFactory factory) { in HEVC() method in AdaptivePlaybackTest
118 public Iterable<Codec> HEVC() { return HEVC(ALL); } in HEVC() 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()
187 public void runHEVC() { ex(HEVC(), allTests); } in runHEVC()
194 public void onlyHEVCHW() { ex(HEVC(HW), allTests); } in onlyHEVCHW()
201 public void onlyHEVCSW() { ex(HEVC(SW), allTests); } in onlyHEVCSW()
212 public void testHEVC_adaptiveEarlyEos() { ex(HEVC(), adaptiveEarlyEos); } in testHEVC_adaptiveEarlyEos()
219 public void testHEVC_adaptiveEosFlushSeek() { ex(HEVC(), adaptiveEosFlushSeek); } in testHEVC_adaptiveEosFlushSeek()
[all …]
DVideoDecoderPerfTest.java53 private static final String HEVC = MediaFormat.MIMETYPE_VIDEO_HEVC; field in VideoDecoderPerfTest