Home
last modified time | relevance | path

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

/external/webrtc/rtc_tools/frame_analyzer/
Dvideo_quality_analysis_unittest.cc131 const std::vector<Cluster> result = CalculateFrameClusters({1}); in TEST_F()
138 EXPECT_EQ(1, GetMaxRepeatedFrames(CalculateFrameClusters({1}))); in TEST_F()
142 EXPECT_EQ(0, GetMaxSkippedFrames(CalculateFrameClusters({1}))); in TEST_F()
146 EXPECT_EQ(0, GetTotalNumberOfSkippedFrames(CalculateFrameClusters({1}))); in TEST_F()
150 const std::vector<Cluster> result = CalculateFrameClusters({1, 1, 2}); in TEST_F()
159 EXPECT_EQ(2, GetMaxRepeatedFrames(CalculateFrameClusters({1, 1, 2}))); in TEST_F()
163 EXPECT_EQ(0, GetMaxSkippedFrames(CalculateFrameClusters({1, 1, 2}))); in TEST_F()
168 GetTotalNumberOfSkippedFrames(CalculateFrameClusters({1, 1, 2}))); in TEST_F()
172 EXPECT_TRUE(CalculateFrameClusters({}).empty()); in TEST_F()
Dvideo_quality_analysis.h89 std::vector<Cluster> CalculateFrameClusters(const std::vector<size_t>& indices);
Dframe_analyzer.cc154 webrtc::test::CalculateFrameClusters(matching_indices); in main()
Dvideo_quality_analysis.cc78 std::vector<Cluster> CalculateFrameClusters( in CalculateFrameClusters() function