Home
last modified time | relevance | path

Searched refs:mIsCodecInAsyncMode (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/cts/tests/media/jni/
H A DNativeCodecDecoderTestCommon.cpp262 mIsCodecInAsyncMode ? mAsyncHandle.getOutputFormat() : mOutFormat; in dequeueOutput()
293 RETURN_IF_TRUE(mIsCodecInAsyncMode ? !mAsyncHandle.hasOutputFormatChanged() in isOutputFormatOk()
298 mIsCodecInAsyncMode ? mAsyncHandle.getOutputFormat() in isOutputFormatOk()
304 mIsCodecInAsyncMode ? mAsyncHandle.getOutputFormat() : mOutFormat)) in isOutputFormatOk()
310 if (mIsCodecInAsyncMode) { in queueCodecConfig()
461 if (mIsCodecInAsyncMode) { in testFlush()
468 if (mIsCodecInAsyncMode) { in testFlush()
481 if (mIsCodecInAsyncMode) { in testFlush()
496 if (mIsCodecInAsyncMode) { in testFlush()
H A DNativeCodecEncoderSurfaceTest.cpp42 bool mIsCodecInAsyncMode; member in CodecEncoderSurfaceTest
257 mIsCodecInAsyncMode = isAsync; in resetContext()
360 if (mIsCodecInAsyncMode) { in tryEncoderOutput()
406 if (mIsCodecInAsyncMode) { in waitForAllEncoderOutputs()
419 if (mIsCodecInAsyncMode) { in queueEOS()
460 if (mIsCodecInAsyncMode) { in queueEOS()
502 if (mIsCodecInAsyncMode) { in doWork()
H A DNativeCodecTestBase.cpp386 mIsCodecInAsyncMode = false; in CodecTestBase()
470 mIsCodecInAsyncMode = isAsync; in resetContext()
515 if (mIsCodecInAsyncMode) { in doWork()
572 if (mIsCodecInAsyncMode) { in queueEOS()
625 if (mIsCodecInAsyncMode) { in waitForAllOutputs()
H A DNativeCodecUnitTest.cpp294 if (mIsCodecInAsyncMode) { in testConfigureInRunningState()
357 if (mIsCodecInAsyncMode) { in testDequeueInputBufferInRunningState()
419 if (mIsCodecInAsyncMode) { in testDequeueOutputBufferInRunningState()
604 mIsCodecInAsyncMode = true; in testSetAsyncNotifyCallbackInInitState()
709 int bufferIndex = mIsCodecInAsyncMode ? mAsyncHandle.getInput().bufferIndex in testGetInputBufferInRunningState()
862 if (mIsCodecInAsyncMode) { in testGetOutputBufferInRunningState()
1203 int bufferIndex = mIsCodecInAsyncMode ? mAsyncHandle.getInput().bufferIndex in testQueueInputBufferWithBadSize()
1232 int bufferIndex = mIsCodecInAsyncMode ? mAsyncHandle.getInput().bufferIndex in testQueueInputBufferWithBadBuffInfo()
1331 if (mIsCodecInAsyncMode) { in testReleaseOutputBufferInRunningState()
1436 if (mIsCodecInAsyncMode) { in testGetBufferFormatInRunningState()
H A DNativeCodecTestBase.h163 bool mIsCodecInAsyncMode; variable
/aosp_15_r20/cts/tests/mediapc/src/android/mediapc/cts/
H A DCodecTranscoderTestBase.java65 boolean mIsCodecInAsyncMode; field in CodecTranscoderTestBase
112 mIsCodecInAsyncMode = isAsync; in resetContext()
196 if (mIsCodecInAsyncMode) { in tryEncoderOutput()
237 if (mIsCodecInAsyncMode) { in waitForAllEncoderOutputs()
249 if (mIsCodecInAsyncMode) { in queueEOS()
276 if (mIsCodecInAsyncMode) { in queueEOS()
303 if (mIsCodecInAsyncMode) { in doWork()
H A DCodecTestBase.java213 boolean mIsCodecInAsyncMode; field in CodecTestBase
301 mIsCodecInAsyncMode = isAsync; in resetContext()
323 if (mIsCodecInAsyncMode) { in doWork()
361 if (mIsCodecInAsyncMode) { in queueEOS()
393 if (mIsCodecInAsyncMode) { in waitForAllOutputs()
/aosp_15_r20/cts/tests/media/common/src/android/mediav2/common/cts/
H A DCodecEncoderSurfaceTestBase.java89 protected boolean mIsCodecInAsyncMode; field in CodecEncoderSurfaceTestBase
377 mIsCodecInAsyncMode = isAsync; in resetContext()
508 if (mIsCodecInAsyncMode) { in tryEncoderOutput()
540 if (mIsCodecInAsyncMode) { in queueEOS()
567 if (mIsCodecInAsyncMode) { in queueEOS()
594 if (mIsCodecInAsyncMode) { in doWork()
643 if (mIsCodecInAsyncMode) { in waitForAllEncoderOutputs()
H A DCodecDecoderTestBase.java168 mIsCodecInAsyncMode ? mAsyncHandle.hasOutputFormatChanged() : in doOutputFormatChecks()
172 mIsCodecInAsyncMode ? mAsyncHandle.getOutputFormat() : mOutFormat; in doOutputFormatChecks()
321 if (mIsCodecInAsyncMode) { in doWork()
357 if (mIsCodecInAsyncMode) { in queueCodecConfig()
H A DCodecTestBase.java382 protected boolean mIsCodecInAsyncMode; field in CodecTestBase
1289 return mIsCodecInAsyncMode ? mAsyncHandle.getOutputFormat() : mOutFormat; in getOutputFormat()
1320 mIsCodecInAsyncMode = isAsync; in resetContext()
1342 if (mIsCodecInAsyncMode) { in doWork()
1380 if (mIsCodecInAsyncMode) { in queueEOS()
1412 if (mIsCodecInAsyncMode) { in waitForAllOutputs()
/aosp_15_r20/cts/tests/media/src/android/mediav2/cts/
H A DCodecUnitTest.java622 if (mIsCodecInAsyncMode) mCodec.start(); in testConfigureInFlushState()
711 if (mIsCodecInAsyncMode) { in testDequeueInputBufferInRunningState()
784 if (mIsCodecInAsyncMode) { in testDequeueOutputBufferInRunningState()
988 mIsCodecInAsyncMode = isAsync; in testSetCallBackInUnInitState()
998 mIsCodecInAsyncMode = !isAsync; in testSetCallBackInUnInitState()
1020 mIsCodecInAsyncMode = !isAsync; in testSetCallBackInInitState()
1030 mIsCodecInAsyncMode = isAsync; in testSetCallBackInInitState()
1052 mIsCodecInAsyncMode = !isAsync; in testSetCallBackInRunningState()
1067 mIsCodecInAsyncMode = isAsync; in testSetCallBackInRunningState()
1144 int bufferIndex = mIsCodecInAsyncMode ? mAsyncHandle.getInput().first : in testGetInputBufferInRunningState()
[all …]
H A DCodecDecoderSurfaceTest.java382 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
387 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
400 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
413 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
H A DCodecDecoderTest.java468 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
473 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
489 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
503 if (mIsCodecInAsyncMode) mCodec.start(); in testFlush()
H A DEncodeDecodeAccuracyTest.java348 if (mIsCodecInAsyncMode) { in tryEncoderOutput()
380 if (mIsCodecInAsyncMode) { in waitForAllEncoderOutputs()
H A DCodecDecoderDetachedSurfaceTest.java196 if (mIsCodecInAsyncMode) { in doWork()
/aosp_15_r20/cts/tests/video/src/android/video/cts/
H A DCodecEncoderPerformanceTestBase.java57 private boolean mIsCodecInAsyncMode; field in CodecEncoderPerformanceTestBase
163 if (mIsCodecInAsyncMode) { in doWork()
328 mIsCodecInAsyncMode = isAsync; in resetContext()