Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/
DVideoRenderQualityTracker.cpp147 getFlag(frameRateDetectionToleranceUs, "frame_rate_detection_tolerance_us"); in getFromServerConfigurableFlags()
180 frameRateDetectionToleranceUs = 2 * 1000; in Configuration()
789 if (abs(durationUs[0] - durationUs[1]) > c.frameRateDetectionToleranceUs || in detectFrameRate()
790 abs(durationUs[0] - durationUs[2]) > c.frameRateDetectionToleranceUs) { in detectFrameRate()
805 if (abs(durationUs[0] - durationUs[2]) > c.frameRateDetectionToleranceUs || in is32pulldown()
806 abs(durationUs[1] - durationUs[3]) > c.frameRateDetectionToleranceUs || in is32pulldown()
807 abs(durationUs[0] - durationUs[4]) > c.frameRateDetectionToleranceUs) { in is32pulldown()
811 if ((abs(durationUs[0] - 33333) < c.frameRateDetectionToleranceUs && in is32pulldown()
812 abs(durationUs[1] - 50000) < c.frameRateDetectionToleranceUs) || in is32pulldown()
813 (abs(durationUs[0] - 50000) < c.frameRateDetectionToleranceUs && in is32pulldown()
[all …]
/frameworks/av/media/libstagefright/tests/
DVideoRenderQualityTracker_test.cpp141 EXPECT_EQ(c.frameRateDetectionToleranceUs, d.frameRateDetectionToleranceUs); in TEST_F()
172 EXPECT_EQ(c.frameRateDetectionToleranceUs, d.frameRateDetectionToleranceUs); in TEST_F()
203 EXPECT_EQ(c.frameRateDetectionToleranceUs, d.frameRateDetectionToleranceUs); in TEST_F()
279 EXPECT_EQ(c.frameRateDetectionToleranceUs, d.frameRateDetectionToleranceUs); in TEST_F()
362 EXPECT_EQ(c.frameRateDetectionToleranceUs, 3000); in TEST_F()
363 EXPECT_NE(c.frameRateDetectionToleranceUs, d.frameRateDetectionToleranceUs); in TEST_F()
489 c.frameRateDetectionToleranceUs = 2 * 1000; // 2 ms in TEST_F()
575 c.frameRateDetectionToleranceUs = 0; in TEST_F()
585 c.frameRateDetectionToleranceUs = 2 * 1000; // 2 ms in TEST_F()
596 c.frameRateDetectionToleranceUs = 2 * 1000; // 2 ms in TEST_F()
[all …]
/frameworks/av/media/libstagefright/include/media/stagefright/
DVideoRenderQualityTracker.h153 int32_t frameRateDetectionToleranceUs; variable