Home
last modified time | relevance | path

Searched refs:useHighBitDepth (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/media/common/src/android/media/cts/
DInputSurface.java56 public InputSurface(Surface surface, boolean releaseSurface, boolean useHighBitDepth) { in InputSurface() argument
63 eglSetup(useHighBitDepth); in InputSurface()
66 public InputSurface(Surface surface, boolean useHighBitDepth) { in InputSurface() argument
67 this(surface, true, useHighBitDepth); in InputSurface()
80 private void eglSetup(boolean useHighBitDepth) { in eglSetup() argument
93 int eglColorSize = useHighBitDepth ? 10 : 8; in eglSetup()
94 int eglAlphaSize = useHighBitDepth ? 2 : 0; in eglSetup()
95 int recordable = useHighBitDepth ? 0 : 1; in eglSetup()
113 assumeFalse(message + " Skipping the test for high bit depth case", useHighBitDepth); in eglSetup()
DOutputSurface.java79 public OutputSurface(int width, int height, boolean useHighBitDepth) { in OutputSurface() argument
80 this(width, height, useHighBitDepth, false); in OutputSurface()
83 public OutputSurface(int width, int height, boolean useHighBitDepth, boolean secure) { in OutputSurface() argument
89 eglSetup(width, height, useHighBitDepth); in OutputSurface()
147 private void eglSetup(int width, int height, boolean useHighBitDepth) { in eglSetup() argument
165 int eglColorSize = useHighBitDepth ? 10 : 8; in eglSetup()
166 int eglAlphaSize = useHighBitDepth ? 2 : 0; in eglSetup()
185 assumeFalse(message + " Skipping the test for high bit depth case", useHighBitDepth); in eglSetup()
/cts/tests/media/common/src/android/mediav2/common/cts/
DInputSurface.java65 private void eglSetup(boolean useHighBitDepth) { in eglSetup() argument
78 int eglColorSize = useHighBitDepth ? 10 : 8; in eglSetup()
79 int eglAlphaSize = useHighBitDepth ? 2 : 0; in eglSetup()
80 int[] recordableList = useHighBitDepth ? new int[]{0, 1} : new int[]{1}; in eglSetup()
155 public InputSurface(Surface surface, boolean releaseSurface, boolean useHighBitDepth) { in InputSurface() argument
162 eglSetup(useHighBitDepth); in InputSurface()
165 public InputSurface(Surface surface, boolean useHighBitDepth) { in InputSurface() argument
166 this(surface, true, useHighBitDepth); in InputSurface()
DOutputSurface.java71 public OutputSurface(int width, int height, boolean useHighBitDepth) { in OutputSurface() argument
72 this(width, height, useHighBitDepth, /* useYuvSampling */ false); in OutputSurface()
75 public OutputSurface(int width, int height, boolean useHighBitDepth, boolean useYuvSampling) { in OutputSurface() argument
80 eglSetup(width, height, useHighBitDepth, useYuvSampling); in OutputSurface()
149 private void eglSetup(int width, int height, boolean useHighBitDepth, boolean useYuvSampling) { in eglSetup() argument
162 int eglColorSize = useHighBitDepth ? 10 : 8; in eglSetup()
163 int eglAlphaSize = useHighBitDepth ? 2 : 0; in eglSetup()
182 assumeFalse(message + " Skipping the test for high bit depth case", useHighBitDepth); in eglSetup()
/cts/tests/mediapc/src/android/mediapc/cts/
DExtYuvTargetSupportTest.java65 public ExtYuvTargetSupportTest(boolean useHighBitDepth) { in ExtYuvTargetSupportTest() argument
66 mUseHighBitDepth = useHighBitDepth; in ExtYuvTargetSupportTest()
73 for (Boolean useHighBitDepth : useHighBitDepthArray) { in inputParams()
74 params.add(new Object[]{useHighBitDepth}); in inputParams()
82 private void eglSetup(boolean useHighBitDepth) { in eglSetup() argument
94 int eglColorSize = useHighBitDepth ? 10 : 8; in eglSetup()
95 int eglAlphaSize = useHighBitDepth ? 2 : 0; in eglSetup()
DMultiTranscoderPerfTest.java183 int requiredMinInstances, boolean useHighBitDepth) throws Exception { in testCodec() argument
206 mEncoderPair.second, mIsAsync, useHighBitDepth)); in testCodec()
211 useHighBitDepth)); in testCodec()
217 useHighBitDepth)); in testCodec()
266 if (useHighBitDepth) { in testCodec()
DCodecTranscoderTestBase.java75 boolean useHighBitDepth) { in CodecTranscoderTestBase() argument
80 mUseHighBitDepth = useHighBitDepth; in CodecTranscoderTestBase()
404 boolean isAsync, boolean useHighBitDepth) { in Transcode() argument
405 super(mediaType, testFile, 3000000, 30, useHighBitDepth); in Transcode()
/cts/tests/tests/media/codec/src/android/media/codec/cts/
DDecodeEditEncodeTest.java255 for (boolean useHighBitDepth : useHighBitDepthModes) { in input()
258 if (mediaType.equals(MediaFormat.MIMETYPE_VIDEO_VP8) && useHighBitDepth) { in input()
262 new Object[]{mediaType, obj[0], obj[1], obj[2], useHighBitDepth}); in input()
270 int height, int bitRate, boolean useHighBitDepth) { in DecodeEditEncodeTest() argument
280 mUseHighBitDepth = useHighBitDepth; in DecodeEditEncodeTest()
/cts/tests/media/src/android/mediav2/cts/
DDecodeGlAccuracyTest.java269 int standard, int transfer, boolean useHighBitDepth, boolean useYuvSampling, in DecodeGlAccuracyTest() argument
276 mUseHighBitDepth = useHighBitDepth; in DecodeGlAccuracyTest()