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

Unified Diff: media/cast/net/cast_transport_sender_impl.cc

Issue 427733002: Cast: Remove unused RTCP messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged Created 6 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
« no previous file with comments | « media/cast/net/cast_transport_defines.h ('k') | media/cast/net/rtcp/rtcp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/cast_transport_sender_impl.cc
diff --git a/media/cast/net/cast_transport_sender_impl.cc b/media/cast/net/cast_transport_sender_impl.cc
index 374b990ad38b2526137afc658c1c7bcda1a7f642..248c69d6bb1e9c3b5d227ef45746aa122c533292 100644
--- a/media/cast/net/cast_transport_sender_impl.cc
+++ b/media/cast/net/cast_transport_sender_impl.cc
@@ -118,8 +118,7 @@ void CastTransportSenderImpl::InitializeAudio(
clock_,
&pacer_,
config.ssrc,
- config.feedback_ssrc,
- config.c_name));
+ config.feedback_ssrc));
pacer_.RegisterAudioSsrc(config.ssrc);
status_callback_.Run(TRANSPORT_AUDIO_INITIALIZED);
}
@@ -150,8 +149,7 @@ void CastTransportSenderImpl::InitializeVideo(
clock_,
&pacer_,
config.ssrc,
- config.feedback_ssrc,
- config.c_name));
+ config.feedback_ssrc));
pacer_.RegisterVideoSsrc(config.ssrc);
status_callback_.Run(TRANSPORT_VIDEO_INITIALIZED);
}
« no previous file with comments | « media/cast/net/cast_transport_defines.h ('k') | media/cast/net/rtcp/rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698