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 14:57:35 +0000
committerhenrik.lundin@webrtc.org <henrik.lundin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-03-11 14:57:35 +0000
commit2ae3c62823083182cf9b67905109691dc2439839 (patch)
treec154321fd39b1e812efef7c745ccbba532320c09 /video_send_stream.h
parentf83bc0597ff00f0573bb091098a06e7655d5eaa6 (diff)
downloadwebrtc-2ae3c62823083182cf9b67905109691dc2439839.tar.gz
Routing SuspendChange to VideoSendStream::Stats
Also checking that the statistics are properly updated in VideoSendStreamTest.SuspendBelowMinBitrate. Adding a test to SendStatisticsProxyTest. Checking callback status in rampup test, too. BUG=2457 R=mflodman@webrtc.org, pbos@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/9439004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5678 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 c3140c07..a6f7e63b 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;
};