Searched refs:CodecTestBase (Results 1 – 9 of 9) sorted by relevance
/cts/tests/media/src/android/mediav2/cts/ |
D | CodecEncoderSurfaceTest.java | 85 CodecTestBase.codecSelKeys = args.getString(CodecTestBase.CODEC_SEL_KEY); 86 if (CodecTestBase.codecSelKeys == null) 87 CodecTestBase.codecSelKeys = CodecTestBase.CODEC_SEL_VALUE; 103 if (CodecTestBase.isHandheld() || CodecTestBase.isTv() || CodecTestBase.isAutomotive()) { in input() 119 if (CodecTestBase.codecSelKeys.contains(CodecTestBase.CODEC_SEL_VALUE)) { in input() 136 if (CodecTestBase.hasCamera() && !mimes.contains(MediaFormat.MIMETYPE_VIDEO_AVC) && in input() 146 for (Map.Entry<String, String> entry : CodecTestBase.codecSelKeyMimeMap.entrySet()) { in input() 149 if (CodecTestBase.codecSelKeys.contains(key) && !mimes.contains(value)) { in input() 331 tryEncoderOutput(CodecTestBase.Q_DEQ_TIMEOUT_US); in waitForAllEncoderOutputs() 335 tryEncoderOutput(CodecTestBase.Q_DEQ_TIMEOUT_US); in waitForAllEncoderOutputs() [all …]
|
D | EncoderColorAspectsTest.java | 117 if (CodecTestBase.codecSelKeys.contains(CodecTestBase.CODEC_SEL_VALUE)) { in input()
|
D | CodecTestBase.java | 444 abstract class CodecTestBase { class 445 private static final String LOG_TAG = CodecTestBase.class.getSimpleName(); 843 class CodecDecoderTestBase extends CodecTestBase { 1102 class CodecEncoderTestBase extends CodecTestBase {
|
D | CodecUnitTest.java | 52 public static class TestApi extends CodecTestBase {
|
/cts/tests/media/jni/ |
D | NativeCodecTestBase.cpp | 339 CodecTestBase::CodecTestBase(const char* mime) { in CodecTestBase() function in CodecTestBase 356 CodecTestBase::~CodecTestBase() { in ~CodecTestBase() 367 bool CodecTestBase::configureCodec(AMediaFormat* format, bool isAsync, bool signalEOSWithLastFrame, in configureCodec() 378 bool CodecTestBase::flushCodec() { in flushCodec() 390 bool CodecTestBase::reConfigureCodec(AMediaFormat* format, bool isAsync, in reConfigureCodec() 396 void CodecTestBase::resetContext(bool isAsync, bool signalEOSWithLastFrame) { in resetContext() 412 bool CodecTestBase::enqueueEOS(size_t bufferIndex) { in enqueueEOS() 423 bool CodecTestBase::doWork(int frameLimit) { in doWork() 473 bool CodecTestBase::queueEOS() { in queueEOS() 496 bool CodecTestBase::waitForAllOutputs() { in waitForAllOutputs() [all …]
|
D | NativeCodecTestBase.h | 121 class CodecTestBase { 145 CodecTestBase(const char* mime); 146 ~CodecTestBase();
|
D | NativeCodecEncoderTest.cpp | 27 class CodecEncoderTest final : CodecTestBase { 84 : CodecTestBase(mime), in CodecEncoderTest() 201 CodecTestBase::resetContext(isAsync, signalEOSWithLastFrame); in resetContext() 209 bool isOk = CodecTestBase::flushCodec(); in flushCodec()
|
D | NativeCodecDecoderTest.cpp | 31 class CodecDecoderTest final : public CodecTestBase { 67 : CodecTestBase(mime), in CodecDecoderTest()
|
D | NativeCodecUnitTest.cpp | 29 class NativeCodecUnitTest final : CodecTestBase { 97 NativeCodecUnitTest::NativeCodecUnitTest(const char* mime) : CodecTestBase(mime) { in NativeCodecUnitTest()
|