Searched refs:complexityRange (Results 1 – 4 of 4) sorted by relevance
/aosp_15_r20/frameworks/av/media/libmedia/tests/codeccapabilities/ |
H A D | CodecCapabilitiesTest.cpp | 258 const Range<int>& complexityRange = encoderCaps->getComplexityRange(); in TEST_F() local 259 EXPECT_EQ(complexityRange.lower(), 0); in TEST_F() 260 EXPECT_EQ(complexityRange.upper(), 0); in TEST_F() 298 const Range<int>& complexityRange = encoderCaps->getComplexityRange(); in TEST_F() local 299 EXPECT_EQ(complexityRange.lower(), 0); in TEST_F() 300 EXPECT_EQ(complexityRange.upper(), 8); in TEST_F() 357 const Range<int>& complexityRange = encoderCaps->getComplexityRange(); in TEST_F() local 358 EXPECT_EQ(complexityRange.lower(), 0); in TEST_F() 359 EXPECT_EQ(complexityRange.upper(), 0); in TEST_F()
|
/aosp_15_r20/cts/tests/tests/media/codec/src/android/media/codec/cts/ |
H A D | MediaCodecCapabilitiesTest.java | 817 Range<Integer> complexityRange = in testGetComplexityRange() local 822 Log.d(TAG, "AAC ComplexityRange : " + complexityRange.toString()); in testGetComplexityRange() 823 assertTrue("AAC ComplexityRange invalid low value", complexityRange.getLower() >= 0); in testGetComplexityRange() 830 Range<Integer> complexityRange = in testGetComplexityRange() local 835 Log.d(TAG, "FLAC ComplexityRange : " + complexityRange.toString()); in testGetComplexityRange() 836 assertTrue("FLAC ComplexityRange invalid low value", complexityRange.getLower() >= 0); in testGetComplexityRange()
|
/aosp_15_r20/frameworks/av/media/ndk/ |
H A D | NdkMediaCodecInfo.cpp | 504 const Range<int32_t>& complexityRange = encoderCaps->mEncoderCaps->getComplexityRange(); in ACodecEncoderCapabilities_getComplexityRange() local 505 outRange->mLower = complexityRange.lower(); in ACodecEncoderCapabilities_getComplexityRange() 506 outRange->mUpper = complexityRange.upper(); in ACodecEncoderCapabilities_getComplexityRange()
|
/aosp_15_r20/cts/tests/video/src/android/video/cts/ |
H A D | CodecPerformanceTestBase.java | 352 Range<Integer> complexityRange = mediaCodecInfo in getEncoderMinComplexity() local 355 minComplexity = complexityRange.getLower(); in getEncoderMinComplexity()
|