summaryrefslogtreecommitdiff
path: root/video_send_stream.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 /video_send_stream.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 'video_send_stream.h')
-rw-r--r--video_send_stream.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/video_send_stream.h b/video_send_stream.h
index d1c17264..c3140c07 100644
--- a/video_send_stream.h
+++ b/video_send_stream.h
@@ -51,18 +51,6 @@ class VideoSendStream {
int max_delay_ms;
std::string c_name;
std::map<uint32_t, StreamStats> substreams;
-
- bool operator==(const Stats& other) const {
- if (input_frame_rate != other.input_frame_rate ||
- encode_frame_rate != other.encode_frame_rate ||
- avg_delay_ms != other.avg_delay_ms ||
- max_delay_ms != other.max_delay_ms || c_name != other.c_name ||
- substreams.size() != other.substreams.size()) {
- return false;
- }
- return std::equal(
- substreams.begin(), substreams.end(), other.substreams.begin());
- }
};
struct Config {