HomeSort by relevance Sort by last modified time
    Searched defs:rtp_stats (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/video/
send_statistics_proxy_unittest.cc 66 EXPECT_EQ(a.rtp_stats.bytes, b.rtp_stats.bytes);
67 EXPECT_EQ(a.rtp_stats.header_bytes, b.rtp_stats.header_bytes);
68 EXPECT_EQ(a.rtp_stats.padding_bytes, b.rtp_stats.padding_bytes);
69 EXPECT_EQ(a.rtp_stats.packets, b.rtp_stats.packets);
70 EXPECT_EQ(a.rtp_stats.retransmitted_packets,
71 b.rtp_stats.retransmitted_packets)
290 StreamDataCounters rtp_stats; local
    [all...]
  /external/chromium_org/third_party/webrtc/
config.h 48 StreamDataCounters rtp_stats; member in struct:webrtc::StreamStats
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_sender_unittest.cc 1157 StreamDataCounters rtp_stats; local
    [all...]
rtp_rtcp_impl.cc 423 StreamDataCounters rtp_stats; local
425 rtp_sender_.GetDataCounters(&rtp_stats, &rtx_stats);
430 state.packets_sent = rtp_stats.packets + rtx_stats.packets;
431 state.media_bytes_sent = rtp_stats.bytes + rtx_stats.bytes;
823 StreamDataCounters rtp_stats; local
825 rtp_sender_.GetDataCounters(&rtp_stats, &rtx_stats);
828 *bytes_sent = rtp_stats.bytes + rtp_stats.padding_bytes +
829 rtp_stats.header_bytes + rtx_stats.bytes +
833 *packets_sent = rtp_stats.packets + rtx_stats.packets
    [all...]

Completed in 739 milliseconds