Index: webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h |
diff --git a/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h b/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h |
index 1587762763b636d5faf22e962af4f25fd728e97e..c43031a633e2ae5244f16258a47461e45f19adbc 100644 |
--- a/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h |
+++ b/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h |
@@ -354,5 +354,11 @@ class NullRtpAudioFeedback : public RtpAudioFeedback { |
const uint8_t volume) override {} |
}; |
+struct RtpPacketLossStats { |
noahric
2015/06/26 00:21:19
Comment for this struct and each field.
bcornell
2015/06/30 19:47:45
Done.
|
+ uint64_t single_packet_loss_count; |
+ uint64_t multiple_packet_loss_event_count; |
+ uint64_t multiple_packet_loss_packet_count; |
+}; |
+ |
} // namespace webrtc |
#endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ |