Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2212)

Unified Diff: webrtc/modules/congestion_controller/include/send_side_congestion_controller.h

Issue 2970653004: Reimplemeted "Test and fix for huge bwe drop after alr state" (Closed)
Patch Set: Fix uninitialized variable Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
index 7a8f362c312335ebc37c4880712075256101aaab..8a1d16f49bc26b1b82c9f0624ae21bac0e9ae655 100644
--- a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
@@ -32,6 +32,7 @@ struct SentPacket;
namespace webrtc {
+class AlrState;
class BitrateController;
class Clock;
class AcknowledgedBitrateEstimator;
@@ -154,6 +155,7 @@ class SendSideCongestionController : public CallStatsObserver,
rtc::CriticalSection bwe_lock_;
int min_bitrate_bps_ GUARDED_BY(bwe_lock_);
std::unique_ptr<DelayBasedBwe> delay_based_bwe_ GUARDED_BY(bwe_lock_);
+ const std::unique_ptr<AlrState> alr_state_;
philipel 2017/07/14 13:56:23 No need for this to be a unique_ptr.
tschumi 2017/07/14 15:36:51 Removed AlrState
rtc::RaceChecker worker_race_;

Powered by Google App Engine
This is Rietveld 408576698