Searched refs:stream_stats (Results 1 – 2 of 2) sorted by relevance
1856 const VideoSendStream::StreamStats& stream_stats = it->second; in TEST_F() local1858 stream_stats.rtcp_packet_type_counts.nack_packets; in TEST_F()2513 const VideoSendStream::StreamStats& stream_stats = it->second; in TEST_F() local2516 stream_stats.rtcp_stats.cumulative_lost != 0 || in TEST_F()2517 stream_stats.rtcp_stats.extended_max_sequence_number != 0 || in TEST_F()2518 stream_stats.rtcp_stats.fraction_lost != 0; in TEST_F()2521 stream_stats.rtp_stats.fec.packets != 0 || in TEST_F()2522 stream_stats.rtp_stats.transmitted.padding_bytes != 0 || in TEST_F()2523 stream_stats.rtp_stats.retransmitted.packets != 0 || in TEST_F()2524 stream_stats.rtp_stats.transmitted.packets != 0; in TEST_F()[all …]
2143 webrtc::VideoSendStream::StreamStats stream_stats = it->second; in GetVideoSenderInfo() local2144 info.bytes_sent += stream_stats.rtp_stats.transmitted.payload_bytes + in GetVideoSenderInfo()2145 stream_stats.rtp_stats.transmitted.header_bytes + in GetVideoSenderInfo()2146 stream_stats.rtp_stats.transmitted.padding_bytes; in GetVideoSenderInfo()2147 info.packets_sent += stream_stats.rtp_stats.transmitted.packets; in GetVideoSenderInfo()2148 info.packets_lost += stream_stats.rtcp_stats.cumulative_lost; in GetVideoSenderInfo()2149 if (stream_stats.width > info.send_frame_width) in GetVideoSenderInfo()2150 info.send_frame_width = stream_stats.width; in GetVideoSenderInfo()2151 if (stream_stats.height > info.send_frame_height) in GetVideoSenderInfo()2152 info.send_frame_height = stream_stats.height; in GetVideoSenderInfo()[all …]