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

Unified Diff: webrtc/audio/audio_send_stream.cc

Issue 2725823002: Move delay_based_bwe_ into CongestionController (Closed)
Patch Set: More refactoring + UTs moved. Created 3 years, 10 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/audio/audio_send_stream.cc
diff --git a/webrtc/audio/audio_send_stream.cc b/webrtc/audio/audio_send_stream.cc
index ec18125427282d4624543bc45b274d2b1a42692e..c49dd7760d3c1140e3016570989f377d7d2b59d1 100644
--- a/webrtc/audio/audio_send_stream.cc
+++ b/webrtc/audio/audio_send_stream.cc
@@ -86,8 +86,7 @@ AudioSendStream::AudioSendStream(
}
}
channel_proxy_->RegisterSenderCongestionControlObjects(
- congestion_controller->pacer(),
- congestion_controller->GetTransportFeedbackObserver(), packet_router,
+ congestion_controller->pacer(), congestion_controller, packet_router,
minyue-webrtc 2017/03/02 19:53:58 should the 2nd arg be an FeedbackAdaptor?
elad.alon_webrtc.org 2017/03/08 18:25:09 As agreed with Stefan, CongestionController is now
bandwidth_observer_.get());
if (!SetupSendCodec()) {
LOG(LS_ERROR) << "Failed to set up send codec state.";

Powered by Google App Engine
This is Rietveld 408576698