Searched refs:stream_stats (Results 1 – 2 of 2) sorted by relevance
1424 const StreamStats& stream_stats = it->second; in TEST_F() local1427 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()1432 stream_stats.rtp_stats.fec_packets != 0 || in TEST_F()1433 stream_stats.rtp_stats.padding_bytes != 0 || in TEST_F()1434 stream_stats.rtp_stats.retransmitted_packets != 0 || in TEST_F()1435 stream_stats.rtp_stats.packets != 0; in TEST_F()1439 stream_stats.bitrate_bps != 0; in TEST_F()1442 stream_stats.delta_frames != 0 || stream_stats.key_frames != 0; in TEST_F()[all …]
1644 webrtc::StreamStats stream_stats = it->second; in GetVideoSenderInfo() local1645 info.bytes_sent += stream_stats.rtp_stats.bytes + in GetVideoSenderInfo()1646 stream_stats.rtp_stats.header_bytes + in GetVideoSenderInfo()1647 stream_stats.rtp_stats.padding_bytes; in GetVideoSenderInfo()1648 info.packets_sent += stream_stats.rtp_stats.packets; in GetVideoSenderInfo()1649 info.packets_lost += stream_stats.rtcp_stats.cumulative_lost; in GetVideoSenderInfo()