Home
last modified time | relevance | path

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

/cts/tests/videocodec/src/android/videocodec/cts/
DVideoEncoderIntraFrameIntervalTest.java135 int picType = pic.getValue(); in testEncoderSyncFrameSupport() local
137 + mTestEnv, picType == PICTURE_TYPE_I || picType == PICTURE_TYPE_P in testEncoderSyncFrameSupport()
138 || picType == PICTURE_TYPE_B); in testEncoderSyncFrameSupport()
139 if (picType == PICTURE_TYPE_I) { in testEncoderSyncFrameSupport()
DVideoEncoderValidationTestBase.java217 int picType = PICTURE_TYPE_UNKNOWN; in dequeueOutput() local
220 picType = PICTURE_TYPE_I; in dequeueOutput()
222 if (picType == PICTURE_TYPE_UNKNOWN) { in dequeueOutput()
224 picType = format.getInteger(MediaFormat.KEY_PICTURE_TYPE, PICTURE_TYPE_UNKNOWN); in dequeueOutput()
226 if (picType == PICTURE_TYPE_UNKNOWN && mParser != null) { in dequeueOutput()
228 picType = BitStreamUtils.getFrameTypeFromBitStream(buf, info, mParser); in dequeueOutput()
230 mPtsPicTypeMap.put(info.presentationTimeUs, picType); in dequeueOutput()
DVideoEncoderMaxBFrameTest.java120 int picType = pic.getValue(); in testMaxBFrameSupport() local
122 + mTestEnv, picType == PICTURE_TYPE_I || picType == PICTURE_TYPE_P in testMaxBFrameSupport()
123 || picType == PICTURE_TYPE_B); in testMaxBFrameSupport()
/cts/tests/media/common/src/android/mediav2/common/cts/
DBitStreamUtils.java237 int picType; in getProfileLevel() local
259 picType = bitArray.readBits(3); in getProfileLevel()
267 picType = bitArray.readBits(1); in getProfileLevel()