Home
last modified time | relevance | path

Searched refs:mDecoderFormat (Results 1 – 5 of 5) sorted by relevance

/cts/tests/video/src/android/video/cts/
DCodecDecoderPerformanceTestBase.java47 mDecoderFormat = new MediaFormat(format); in setUpFormat()
48 mDecoderFormat.setInteger(MediaFormat.KEY_PRIORITY, mKeyPriority); in setUpFormat()
49 mDecoderFormat.setInteger(MediaFormat.KEY_COLOR_FORMAT, in setUpFormat()
57 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, operatingRateToSet); in setUpFormat()
59 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, -1); in setUpFormat()
88 mDecoder.configure(mDecoderFormat, mSurface, null, 0); in decode()
DCodecEncoderPerformanceTestBase.java125 mDecoderFormat = new MediaFormat(format); in setUpFormats()
126 mDecoderFormat.setInteger(MediaFormat.KEY_PRIORITY, mKeyPriority); in setUpFormats()
127 mEncoderFormat = setUpEncoderFormat(mDecoderFormat, mEncoderMime, mBitrate); in setUpFormats()
146 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, operatingRateToSet); in setUpFormats()
149 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, -1); in setUpFormats()
315 mDecoder.configure(mDecoderFormat, mSurface, null, 0); in configureCodec()
DCodecPerformanceTestBase.java90 MediaFormat mDecoderFormat; field in CodecPerformanceTestBase
/cts/tests/media/common/src/android/mediav2/common/cts/
DCodecEncoderSurfaceTestBase.java78 protected MediaFormat mDecoderFormat; field in CodecEncoderSurfaceTestBase
133 mDecoderFormat = setUpSource(mTestFile); in setUpCodecEncoderSurfaceTestBase()
136 decoderFormatList.add(mDecoderFormat); in setUpCodecEncoderSurfaceTestBase()
137 Assume.assumeTrue("Decoder: " + mDecoderName + " doesn't support format: " + mDecoderFormat, in setUpCodecEncoderSurfaceTestBase()
168 .setWidth(mDecoderFormat.getInteger(MediaFormat.KEY_WIDTH)) in setUpCodecEncoderSurfaceTestBase()
169 .setHeight(mDecoderFormat.getInteger(MediaFormat.KEY_HEIGHT)); in setUpCodecEncoderSurfaceTestBase()
569 configureCodec(mDecoderFormat, mEncoderFormat, isAsync, signalEOSWithLastFrame); in encodeToMemory()
/cts/tests/media/src/android/mediav2/cts/
DCodecEncoderSurfaceTest.java365 int colorFormat = mDecoderFormat.getInteger(MediaFormat.KEY_COLOR_FORMAT, -1); in testSimpleEncodeFromSurfaceNative()