/cts/tests/media/src/android/mediav2/cts/ |
D | CodecUnitTest.java | 162 configureCodec(format, isAsync, false, true); in tryConfigureCodecInInvalidState() 460 configureCodec(format, isAsync, false, true); in testConfigureInInitState() 477 configureCodec(format, isAsync, false, true); in testConfigureAfterStart() 497 configureCodec(format, isAsync, false, true); in testConfigureAfterQueueInputBuffer() 516 configureCodec(format, isAsync, false, true); in testConfigureInEOSState() 536 configureCodec(format, isAsync, false, true); in testConfigureInFlushState() 557 configureCodec(format, isAsync, false, true); in testConfigureInUnInitState() 561 configureCodec(format, isAsync, false, true); in testConfigureInUnInitState() 590 configureCodec(format, isAsync, false, true); in testDequeueInputBufferInUnInitState() 607 configureCodec(format, isAsync, false, true); in testDequeueInputBufferInInitState() [all …]
|
D | CodecEncoderTest.java | 104 configureCodec(format, false, true, true); in encodeToMemory() 298 configureCodec(format, isAsync, eosType, true); in testSimpleEncode() 381 configureCodec(inpFormat, isAsync, true, true); in testFlush() 507 configureCodec(format, isAsync, true, true); in testReconfigure() 628 configureCodec(mFormats.get(0), isAsync, false, true); in testOnlyEos() 706 configureCodec(format, isAsync, false, true); in testSetForceSyncFrame() 812 configureCodec(format, isAsync, false, true); in testAdaptiveBitRate()
|
D | CodecDecoderTest.java | 265 configureCodec(format, isAsync, eosType, false); in testSimpleDecode() 377 configureCodec(format, isAsync, true, false); in testFlush() 511 configureCodec(format, isAsync, true, false); in testReconfigure() 658 configureCodec(format, isAsync, false, false); in testOnlyEos() 739 configureCodec(fmt, isAsync, eosMode, false); in testSimpleDecodeQueueCSD() 838 configureCodec(format, isAsync, true, false); in testDecodePartialFrame()
|
D | CodecDecoderSurfaceTest.java | 101 configureCodec(format, false, true, false); in decodeAndSavePts() 217 configureCodec(format, isAsync, true, false); in testSimpleDecodeToSurface() 276 configureCodec(format, isAsync, true, false); in testFlush() 369 configureCodec(format, isAsync, true, false); in testReconfigure()
|
D | CodecTestBase.java | 595 void configureCodec(MediaFormat format, boolean isAsync, boolean signalEOSWithLastFrame, in configureCodec() method in CodecTestBase 632 configureCodec(format, isAsync, signalEOSWithLastFrame, isEncoder); in reConfigureCodec() 1042 configureCodec(format, false, true, false); in decodeToMemory() 1071 configureCodec(format, true, true, false); in validateColorAspects() 1091 configureCodec(format, true, true, false); in validateColorAspects()
|
D | CodecEncoderSurfaceTest.java | 210 private void configureCodec(MediaFormat decFormat, MediaFormat encFormat, boolean isAsync, in configureCodec() method in CodecEncoderSurfaceTest 496 configureCodec(decoderFormat, encoderFormat, isAsync, false); in testSimpleEncodeFromSurface()
|
D | EncoderColorAspectsTest.java | 195 configureCodec(mConfigFormat, true, true, true); in testColorAspects()
|
D | EncoderProfileLevelTest.java | 726 configureCodec(format, isAsync, true, true); in testValidateProfileLevel()
|
/cts/tests/media/jni/ |
D | NativeCodecUnitTest.cpp | 257 if (!configureCodec(mFormat, isAsync, true, isEncoder)) return false; in testConfigureInInitState() 274 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testConfigureInRunningState() 313 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testConfigureInUnInitState() 329 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueInputBufferInInitState() 346 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueInputBufferInRunningState() 373 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueInputBufferInUnInitState() 390 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueOutputBufferInInitState() 408 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueOutputBufferInRunningState() 437 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testDequeueOutputBufferInUnInitState() 455 if (!configureCodec(mFormat, isAsync, false, isEncoder)) return false; in testFlushInInitState() [all …]
|
D | NativeCodecDecoderTest.cpp | 46 bool configureCodec(AMediaFormat* format, bool isAsync, bool signalEOSWithLastFrame, 151 bool CodecDecoderTest::configureCodec(AMediaFormat* format, bool isAsync, in configureCodec() function in CodecDecoderTest 274 if (!configureCodec(format, false, true, false)) return false; in decodeToMemory() 327 if (!configureCodec(mInpDecFormat, isAsync, eosType, false)) return false; in testSimpleDecode() 420 if (!configureCodec(mInpDecFormat, isAsync, true, false)) return false; in testFlush() 523 if (!configureCodec(mInpDecFormat, isAsync, false, false)) return false; in testOnlyEos() 588 if (!configureCodec(fmt, isAsync, eosType, false)) return false; in testSimpleDecodeQueueCSD()
|
D | NativeCodecEncoderTest.cpp | 362 if (!configureCodec(format, false, true, true)) return false; in encodeToMemory() 435 if (!configureCodec(format, isAsync, eosType, true)) return false; in testSimpleEncode() 486 if (!configureCodec(format, isAsync, true, true)) return false; in testFlush() 595 if (!configureCodec(format, isAsync, true, true)) return false; in testReconfigure() 691 if (!configureCodec(format, isAsync, false, true)) return false; in testOnlyEos() 744 if (!configureCodec(format, isAsync, false, true)) return false; in testSetForceSyncFrame() 821 if (!configureCodec(format, isAsync, false, true)) return false; in testAdaptiveBitRate()
|
D | NativeCodecEncoderSurfaceTest.cpp | 62 bool configureCodec(bool isAsync, bool signalEOSWithLastFrame); 163 bool CodecEncoderSurfaceTest::configureCodec(bool isAsync, bool signalEOSWithLastFrame) { in configureCodec() function in CodecEncoderSurfaceTest 504 if (!configureCodec(mIsCodecInAsyncMode, mSignalEOSWithLastFrame)) return false; in testSimpleEncode()
|
D | NativeCodecTestBase.h | 147 virtual bool configureCodec(AMediaFormat* format, bool isAsync, bool signalEOSWithLastFrame,
|
D | NativeCodecTestBase.cpp | 367 bool CodecTestBase::configureCodec(AMediaFormat* format, bool isAsync, bool signalEOSWithLastFrame, in configureCodec() function in CodecTestBase 393 return configureCodec(format, isAsync, signalEOSWithLastFrame, isEncoder); in reConfigureCodec()
|