Home
last modified time | relevance | path

Searched refs:mDecoderFormat (Results 1 – 3 of 3) 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.java110 mDecoderFormat = new MediaFormat(format); in setUpFormats()
111 mDecoderFormat.setInteger(MediaFormat.KEY_PRIORITY, mKeyPriority); in setUpFormats()
112 mEncoderFormat = setUpEncoderFormat(mDecoderFormat, mEncoderMime, mBitrate); in setUpFormats()
124 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, operatingRateToSet); in setUpFormats()
127 mDecoderFormat.setInteger(MediaFormat.KEY_OPERATING_RATE, -1); in setUpFormats()
179 mDecoder.configure(mDecoderFormat, mSurface, null, 0); in encode()
DCodecPerformanceTestBase.java83 MediaFormat mDecoderFormat; field in CodecPerformanceTestBase