summaryrefslogtreecommitdiff
path: root/video_send_stream.h
diff options
context:
space:
mode:
authorhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-13 13:31:21 +0000
committerhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-13 13:31:21 +0000
commit9376c690a76a995b8d198107b3dbe68616392ccb (patch)
treea2c2011e47512bbe2f82f081e90b80a310c5e0d0 /video_send_stream.h
parent3f83f9cae99b605aee71b46839e902653baeb3f6 (diff)
downloadwebrtc-9376c690a76a995b8d198107b3dbe68616392ccb.tar.gz
Re-landing "Routing SuspendChange to VideoSendStream::Stats"
This was originally committed as r5687, but reverted due to a flaky test. BUG=3040 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/9939004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5695 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video_send_stream.h')
-rw-r--r--video_send_stream.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/video_send_stream.h b/video_send_stream.h
index 5a4c89d8..8279c052 100644
--- a/video_send_stream.h
+++ b/video_send_stream.h
@@ -43,12 +43,14 @@ class VideoSendStream {
: input_frame_rate(0),
encode_frame_rate(0),
avg_delay_ms(0),
- max_delay_ms(0) {}
+ max_delay_ms(0),
+ suspended(false) {}
int input_frame_rate;
int encode_frame_rate;
int avg_delay_ms;
int max_delay_ms;
+ bool suspended;
std::string c_name;
std::map<uint32_t, StreamStats> substreams;
};