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-11 17:13:14 +0000
committerhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-11 17:13:14 +0000
commit97593553fd479ae63f099ccbaad91d1793b0606b (patch)
tree25c63005ed8ca56927111be08966fb704a24fba8 /video_send_stream.h
parentdce00af592ec94545ffbcd4a2ef234d9f13bd423 (diff)
downloadwebrtc-97593553fd479ae63f099ccbaad91d1793b0606b.tar.gz
Revert "Routing SuspendChange to VideoSendStream::Stats"
The test VideoSendStreamTest.SuspendBelowMinBitrate seems flaky. Reverting and investigating. BUG=3040 Review URL: https://webrtc-codereview.appspot.com/9799004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5681 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video_send_stream.h')
-rw-r--r--video_send_stream.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/video_send_stream.h b/video_send_stream.h
index a6f7e63b..c3140c07 100644
--- a/video_send_stream.h
+++ b/video_send_stream.h
@@ -43,14 +43,12 @@ class VideoSendStream {
: input_frame_rate(0),
encode_frame_rate(0),
avg_delay_ms(0),
- max_delay_ms(0),
- suspended(false) {}
+ max_delay_ms(0) {}
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;
};