Home
last modified time | relevance | path

Searched refs:rtcp_stats (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/webrtc/video/
Dsend_statistics_proxy_unittest.cc74 EXPECT_EQ(a.rtcp_stats.fraction_lost, b.rtcp_stats.fraction_lost); in ExpectEqual()
75 EXPECT_EQ(a.rtcp_stats.cumulative_lost, b.rtcp_stats.cumulative_lost); in ExpectEqual()
76 EXPECT_EQ(a.rtcp_stats.extended_max_sequence_number, in ExpectEqual()
77 b.rtcp_stats.extended_max_sequence_number); in ExpectEqual()
78 EXPECT_EQ(a.rtcp_stats.jitter, b.rtcp_stats.jitter); in ExpectEqual()
100 ssrc_stats.rtcp_stats.cumulative_lost = offset; in TEST_F()
101 ssrc_stats.rtcp_stats.extended_max_sequence_number = offset + 1; in TEST_F()
102 ssrc_stats.rtcp_stats.fraction_lost = offset + 2; in TEST_F()
103 ssrc_stats.rtcp_stats.jitter = offset + 3; in TEST_F()
104 callback->StatisticsUpdated(ssrc_stats.rtcp_stats, ssrc); in TEST_F()
[all …]
Dreceive_statistics_proxy.cc72 stats_.rtcp_stats = statistics; in StatisticsUpdated()
Dsend_statistics_proxy.cc73 stats->rtcp_stats = statistics; in StatisticsUpdated()
Dend_to_end_tests.cc1390 stats.rtcp_stats.cumulative_lost != 0 || in TEST_F()
1391 stats.rtcp_stats.extended_max_sequence_number != 0 || in TEST_F()
1392 stats.rtcp_stats.fraction_lost != 0 || stats.rtcp_stats.jitter != 0; in TEST_F()
1427 stream_stats.rtcp_stats.cumulative_lost != 0 || in TEST_F()
1428 stream_stats.rtcp_stats.extended_max_sequence_number != 0 || in TEST_F()
1429 stream_stats.rtcp_stats.fraction_lost != 0; in TEST_F()
/external/chromium_org/third_party/webrtc/
Dconfig.h49 RtcpStatistics rtcp_stats; member
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
Dvie_autotest_custom_call.cc1512 webrtc::RtcpStatistics rtcp_stats; in PrintRTCCPStatistics() local
1521 rtcp_stats, in PrintRTCCPStatistics()
1532 rtcp_stats, in PrintRTCCPStatistics()
1540 << rtcp_stats.fraction_lost << std::endl; in PrintRTCCPStatistics()
1542 << rtcp_stats.cumulative_lost << std::endl; in PrintRTCCPStatistics()
1544 << rtcp_stats.extended_max_sequence_number << std::endl; in PrintRTCCPStatistics()
1546 << rtcp_stats.jitter << std::endl; in PrintRTCCPStatistics()
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
Dneteq_unittest.cc384 RtcpStatistics rtcp_stats; in DecodeAndCompare() local
385 neteq_->GetRtcpStatistics(&rtcp_stats); in DecodeAndCompare()
386 ASSERT_NO_FATAL_FAILURE(rtcp_stat_files.ProcessReference(rtcp_stats)); in DecodeAndCompare()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine2.cc1649 info.packets_lost += stream_stats.rtcp_stats.cumulative_lost; in GetVideoSenderInfo()
1656 static_cast<float>(first_stream_stats.rtcp_stats.fraction_lost) / in GetVideoSenderInfo()