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

Unified Diff: webrtc/media/engine/webrtcvoiceengine.cc

Issue 1803063004: Reset the BWE when the network changes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 9 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/media/engine/webrtcvoiceengine.cc
diff --git a/webrtc/media/engine/webrtcvoiceengine.cc b/webrtc/media/engine/webrtcvoiceengine.cc
index ae2518b73af9d74feed8a847d51c4f2f9b60ab9e..2f3ca99206ddda1583419a1762c9f2b88ad0ff29 100644
--- a/webrtc/media/engine/webrtcvoiceengine.cc
+++ b/webrtc/media/engine/webrtcvoiceengine.cc
@@ -2334,6 +2334,11 @@ void WebRtcVoiceMediaChannel::OnRtcpReceived(
}
}
+void WebRtcVoiceMediaChannel::OnBestConnectionChanged(
stefan-webrtc 2016/03/17 12:48:19 What will happen when we're not using BUNDLE? It's
honghaiz3 2016/03/23 19:55:40 This is a very good point. We are using one BWE fo
+ Connection* best_connection) {
+ call_->OnBestConnectionChanged(best_connection);
+}
+
bool WebRtcVoiceMediaChannel::MuteStream(uint32_t ssrc, bool muted) {
RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
int channel = GetSendChannelId(ssrc);

Powered by Google App Engine
This is Rietveld 408576698