Home
last modified time | relevance | path

Searched refs:refHeight (Results 1 – 3 of 3) sorted by relevance

/cts/tests/media/jni/
DNativeMediaCommon.cpp133 int32_t refWidth, testWidth, refHeight, testHeight; in isFormatSimilar() local
139 bool hasRefHeight = AMediaFormat_getInt32(refFormat, AMEDIAFORMAT_KEY_HEIGHT, &refHeight); in isFormatSimilar()
144 if (refHeight != testHeight) return false; in isFormatSimilar()
DNativeCodecTestBase.cpp586 int32_t refHeight = getHeight(inpFormat); in isFormatSimilar() local
588 return refWidth != -1 && refHeight != -1 && refWidth == testWidth && in isFormatSimilar()
589 refHeight == testHeight && (strncmp(testMime, "video/", strlen("video/")) == 0); in isFormatSimilar()
DNativeExtractorTest.cpp565 int32_t refWidth, refHeight; in nativeReadAllData() local
570 CHECK_KEY(AMediaFormat_getInt32(format, AMEDIAFORMAT_KEY_HEIGHT, &refHeight), format, in nativeReadAllData()
572 flattenField<int32_t>(buffer, &bufferSize, refHeight); in nativeReadAllData()