Chromium Code Reviews| Index: webrtc/modules/congestion_controller/include/congestion_controller.h |
| diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h |
| index a0531cc27ec3560b02765d599849123523d68b08..b70899d84beac91b2ea36871e333005674f8d87c 100644 |
| --- a/webrtc/modules/congestion_controller/include/congestion_controller.h |
| +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h |
| @@ -124,6 +124,7 @@ class CongestionController : public CallStatsObserver, public Module { |
| RemoteEstimatorProxy remote_estimator_proxy_; |
| TransportFeedbackAdapter transport_feedback_adapter_; |
| int min_bitrate_bps_; |
| + int max_bitrate_bps_; |
| rtc::CriticalSection critsect_; |
| uint32_t last_reported_bitrate_bps_ GUARDED_BY(critsect_); |
|
stefan-webrtc
2016/08/16 11:48:39
Make this int to avoid cast?
philipel
2016/08/16 13:04:31
If I change it I have to cast at line 367 in the .
stefan-webrtc
2016/08/16 13:28:29
Acknowledged.
|
| uint8_t last_reported_fraction_loss_ GUARDED_BY(critsect_); |