From 2ae3c62823083182cf9b67905109691dc2439839 Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Tue, 11 Mar 2014 14:57:35 +0000 Subject: 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 --- video_send_stream.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'video_send_stream.h') 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 substreams; }; -- cgit v1.2.3