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

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

Issue 1844773002: Update the call when the network route changes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Remove the change in congestion controller. 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/webrtcvideoengine2.cc
diff --git a/webrtc/media/engine/webrtcvideoengine2.cc b/webrtc/media/engine/webrtcvideoengine2.cc
index cd05f8e6ff5bbe48c820639f10477c8e88dc3306..48c4cf9e6dd8888145427cc96c14c134cd5defae 100644
--- a/webrtc/media/engine/webrtcvideoengine2.cc
+++ b/webrtc/media/engine/webrtcvideoengine2.cc
@@ -1413,8 +1413,7 @@ void WebRtcVideoChannel2::OnReadyToSend(bool ready) {
void WebRtcVideoChannel2::OnNetworkRouteChanged(
const std::string& transport_name,
const NetworkRoute& network_route) {
- // TODO(honghaiz): uncomment this once the function in call is implemented.
- // call_->OnNetworkRouteChanged(transport_name, network_route);
+ call_->OnNetworkRouteChanged(transport_name, network_route);
}
bool WebRtcVideoChannel2::MuteStream(uint32_t ssrc, bool mute) {

Powered by Google App Engine
This is Rietveld 408576698