summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorsprang@webrtc.org <sprang@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-02-07 12:06:29 +0000
committersprang@webrtc.org <sprang@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-02-07 12:06:29 +0000
commitc8ab7215c005f95e375f6e07f2a08ab6c7431f51 (patch)
tree45fc51daaa7c27dd44f3ed20f42734bd3f99492e /config.h
parentde93ce079f7ee5a42592e670d9f30d880e760a25 (diff)
downloadwebrtc-c8ab7215c005f95e375f6e07f2a08ab6c7431f51.tar.gz
Wire up statistics in video receive stream of new API
This CL includes Call tests that test both send and receive sides. BUG=2235 R=mflodman@webrtc.org, pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/8049004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5499 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'config.h')
-rw-r--r--config.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/config.h b/config.h
index 9ff8a55f..105d9a54 100644
--- a/config.h
+++ b/config.h
@@ -41,13 +41,6 @@ struct StreamStats {
int32_t bitrate_bps;
StreamDataCounters rtp_stats;
RtcpStatistics rtcp_stats;
-
- bool operator==(const StreamStats& other) const {
- return key_frames == other.key_frames &&
- delta_frames == other.delta_frames &&
- bitrate_bps == other.bitrate_bps && rtp_stats == other.rtp_stats &&
- rtcp_stats == other.rtcp_stats;
- }
};
// Settings for NACK, see RFC 4585 for details.