/cts/tests/media/src/android/mediav2/cts/ |
D | CodecEncoderTest.java | 83 mSyncFramesPos.add(mOutputCount); in dequeueOutput() 200 assertTrue(log + "output received", 0 != mOutputCount); in testSimpleEncode() 203 log + "input count != output count, act/exp: " + mOutputCount + in testSimpleEncode() 204 " / " + mInputCount, mInputCount == mOutputCount); in testSimpleEncode() 266 assertTrue(log + "no output received", 0 != mOutputCount); in testLosslessEncodeDecode() 269 log + "input count != output count, act/exp: " + mOutputCount + in testLosslessEncodeDecode() 270 " / " + mInputCount, mInputCount == mOutputCount); in testLosslessEncodeDecode() 348 boolean checkMetrics = (mOutputCount != 0); in testFlush() 361 assertTrue(log + "output received", 0 != mOutputCount); in testFlush() 363 assertTrue(log + "input count != output count, act/exp: " + mOutputCount + in testFlush() [all …]
|
D | CodecDecoderSurfaceTest.java | 64 mOutputCount++; in dequeueOutput() 178 assertTrue(log + "output received", 0 != mOutputCount); in testSimpleDecodeToSurface() 262 assertTrue(log + "output received", 0 != mOutputCount); in testFlush() 278 assertTrue(log + "output received", 0 != mOutputCount); in testFlush() 353 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure() 369 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure() 390 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure()
|
D | CodecDecoderTest.java | 251 assertTrue(log + "output received", 0 != mOutputCount); in testSimpleDecode() 349 boolean checkMetrics = (mOutputCount != 0); in testFlush() 363 assertTrue(log + "output received", 0 != mOutputCount); in testFlush() 379 assertTrue(log + "output received", 0 != mOutputCount); in testFlush() 469 if (mOutputCount != 0) { in testReconfigure() 497 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure() 523 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure() 559 assertTrue(log + "output received", 0 != mOutputCount); in testReconfigure() 690 assertTrue(log + "output received", 0 != mOutputCount); in testSimpleDecodeQueueCSD() 784 assertTrue(log + "output received", 0 != mOutputCount); in testDecodePartialFrame()
|
D | EncodeDecodeAccuracyTest.java | 367 return (delta <= (mOutputCount >= STEADY_STATE_FRAME_INDEX ? STEADY_STATE_COLOR_DELTA : in isColorClose() 402 mOutputCount++; in dequeueOutput() 408 if (checkSurfaceFrame(mOutputCount - 1)) mBadFrames++; in dequeueOutput() 501 assertTrue("mOutputCnt != mInputCnt", mOutputCount == FRAMES_TO_ENCODE); in testEncodeDecodeAccuracyRGB()
|
D | EncoderColorAspectsTest.java | 180 assertTrue(log + "output received", 0 != mOutputCount); in testColorAspects()
|
D | AdaptivePlaybackTest.java | 124 mOutputCount++; in dequeueOutput()
|
D | CodecTestBase.java | 538 int mOutputCount; field in CodecTestBase 844 mOutputCount = 0; in flushCodec() 866 mOutputCount = 0; in resetContext() 1265 mOutputCount++; in dequeueOutput() 1631 mOutputCount++; in dequeueOutput()
|
D | CodecDecoderValidationTest.java | 492 assertTrue(log + "output received", 0 != mOutputCount); in testDecodeAndValidate()
|
D | ExtractorTest.java | 1377 assertTrue(log + "no output received", 0 != cdtb.mOutputCount);
|
/cts/tests/mediapc/src/android/mediapc/cts/ |
D | PlaybackFrameDrop.java | 194 if (mOutputCount == 0) { in dequeueOutput() 197 } else if (nowUs > getRenderTimeUs(mOutputCount + 1)) { in dequeueOutput() 202 } else if (nowUs > getRenderTimeUs(mOutputCount)) { in dequeueOutput() 211 if ((getRenderTimeUs(mOutputCount) - nowUs) > (mEachFrameTimeIntervalUs / 2)) { in dequeueOutput() 213 Thread.sleep(((getRenderTimeUs(mOutputCount) - nowUs) - in dequeueOutput() 222 mOutputCount++; in dequeueOutput()
|
D | CodecTestBase.java | 192 int mOutputCount; field in CodecTestBase 227 mOutputCount = 0; in resetContext() 466 mOutputCount++; in dequeueOutput() 658 mOutputCount++; in dequeueOutput() 695 double fps = mOutputCount / ((end - start) / 1000.0); in doDecode() 724 mOutputCount++; in dequeueOutput() 778 double fps = mOutputCount / ((end - start) / 1000.0); in doEncode()
|
D | AudioPlaybackLoad.java | 134 mOutputCount++; in dequeueOutput()
|
/cts/tests/media/jni/ |
D | NativeCodecEncoderTest.cpp | 331 mSyncFramesPos.push_back(mOutputCount); in dequeueOutput() 335 mOutputCount++; in dequeueOutput() 451 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testSimpleEncode() 452 CHECK_ERR((!mIsAudio && mInputCount != mOutputCount), log, in testSimpleEncode() 517 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testFlush() 520 CHECK_ERR((!mIsAudio && mInputCount != mOutputCount), log, "input cnt != output cnt", in testFlush() 537 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testFlush() 540 CHECK_ERR(!mIsAudio && (mInputCount != mOutputCount), log, "input cnt != output cnt", in testFlush() 625 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testReconfigure() 626 CHECK_ERR((!mIsAudio && mInputCount != mOutputCount), log, "input cnt != output cnt", in testReconfigure() [all …]
|
D | NativeCodecDecoderTest.cpp | 245 mOutputCount++; in dequeueOutput() 358 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testSimpleDecode() 491 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testFlush() 510 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testFlush() 636 CHECK_ERR((0 == mOutputCount), log, "received 0 outputs", isPass); in testSimpleDecodeQueueCSD()
|
D | NativeCodecTestBase.cpp | 338 mOutputCount = 0; in CodecTestBase() 376 mOutputCount = 0; in flushCodec() 394 mOutputCount = 0; in resetContext()
|
D | NativeCodecTestBase.h | 135 int mOutputCount; variable
|
/cts/tests/tests/media/src/android/media/cts/ |
D | SurfaceEncodeTimestampTest.java | 397 private int mOutputCount; field in SurfaceEncodeTimestampTest.EncoderCallback 432 mActualOutputPts[mOutputCount++] = info.presentationTimeUs; in onOutputBufferAvailable() 436 (mOutputCount == mMaxOutput); in onOutputBufferAvailable()
|
D | DecoderTest.java | 1078 int mOutputCount; in testHdrMetadata() 1105 bufferFormat, dynamicInfo[mOutputCount]); in testHdrMetadata() 1109 mOutputCount++; in testHdrMetadata() 1110 if (mOutputCount >= dynamicInfo.length) { in testHdrMetadata() 1317 int mOutputCount; in testHdrToSdr() 1351 mOutputCount++; in testHdrToSdr() 1352 if (mOutputCount >= dynamicInfo.length) { in testHdrToSdr()
|