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

Unified Diff: media/cast/test/sender.cc

Issue 736233003: Renaming "incoming_feedback_ssrc" to "receiver_ssrc" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/test/end2end_unittest.cc ('k') | media/cast/test/utility/default_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/sender.cc
diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc
index 96ca5d7ff6c8ac104ec948af7d7898fb6e1cbb91..7ec1931b78132f67d4af921d8f2b8c8fe95ff04d 100644
--- a/media/cast/test/sender.cc
+++ b/media/cast/test/sender.cc
@@ -71,7 +71,7 @@ media::cast::AudioSenderConfig GetAudioSenderConfig() {
audio_config.bitrate = 0; // Use Opus auto-VBR mode.
audio_config.codec = media::cast::CODEC_AUDIO_OPUS;
audio_config.ssrc = 1;
- audio_config.incoming_feedback_ssrc = 2;
+ audio_config.receiver_ssrc = 2;
audio_config.rtp_payload_type = 127;
// TODO(miu): The default in cast_defines.h is 100. Should this be 100, and
// should receiver.cc's config also be 100?
@@ -105,7 +105,7 @@ media::cast::VideoSenderConfig GetVideoSenderConfig() {
// SSRCs and payload type. Don't change them.
video_config.ssrc = 11;
- video_config.incoming_feedback_ssrc = 12;
+ video_config.receiver_ssrc = 12;
video_config.rtp_payload_type = 96;
// TODO(miu): The default in cast_defines.h is 100. Should this be 100, and
// should receiver.cc's config also be 100?
« no previous file with comments | « media/cast/test/end2end_unittest.cc ('k') | media/cast/test/utility/default_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698