Home
last modified time | relevance | path

Searched refs:configRef (Results 1 – 4 of 4) sorted by relevance

/cts/tests/media/src/android/mediav2/cts/
DCodecEncoderTest.java479 OutputManager configRef = null; in testReconfigure() local
483 configRef = mOutputBuff; in testReconfigure()
486 configRef.isPtsStrictlyIncreasing(mPrevOutputPts)); in testReconfigure()
489 configRef.isOutPtsListIdenticalToInpPtsList((mMaxBFrames != 0))); in testReconfigure()
579 assertTrue(log + "encoder output is flaky", configRef.equals(test)); in testReconfigure()
DCodecDecoderSurfaceTest.java355 OutputManager configRef = mOutputBuff; in testReconfigure() local
359 configRef.isOutPtsListIdenticalToInpPtsList(false)); in testReconfigure()
431 assertTrue(log + "decoder output is flaky", configRef.equals(test)); in testReconfigure()
DCodecDecoderTest.java492 OutputManager configRef = mOutputBuff; in testReconfigure() local
497 configRef.isPtsStrictlyIncreasing(mPrevOutputPts)); in testReconfigure()
619 assertTrue(log + "decoder output is flaky", configRef.equals(test)); in testReconfigure()
/cts/tests/media/jni/
DNativeCodecEncoderTest.cpp550 auto configRef = &mReconfBuff; in testReconfigure() local
553 if (!encodeToMemory(srcPath, encoder, INT32_MAX, format, configRef)) { in testReconfigure()
558 CHECK_ERR(mIsAudio && (!configRef->isPtsStrictlyIncreasing(mPrevOutputPts)), "", in testReconfigure()
560 CHECK_ERR(!mIsAudio && (!configRef->isOutPtsListIdenticalToInpPtsList(mMaxBFrames != 0)), in testReconfigure()
654 CHECK_ERR((!configRef->equals(test)), log, "output is flaky", isPass); in testReconfigure()