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

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

Issue 916973003: Rename the members of FrameReceiverConfig (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « media/cast/test/cast_benchmarks.cc ('k') | media/cast/test/receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/end2end_unittest.cc
diff --git a/media/cast/test/end2end_unittest.cc b/media/cast/test/end2end_unittest.cc
index 9b36b598f5d22cbf00001272b1d7620672802db7..f5780ee98e8fde223c1c7aaf4b4047be3049dbb0 100644
--- a/media/cast/test/end2end_unittest.cc
+++ b/media/cast/test/end2end_unittest.cc
@@ -467,9 +467,9 @@ class End2EndTest : public ::testing::Test {
audio_sender_config_.bitrate = kDefaultAudioEncoderBitrate;
audio_sender_config_.codec = audio_codec;
- audio_receiver_config_.feedback_ssrc =
+ audio_receiver_config_.receiver_ssrc =
audio_sender_config_.receiver_ssrc;
- audio_receiver_config_.incoming_ssrc = audio_sender_config_.ssrc;
+ audio_receiver_config_.sender_ssrc = audio_sender_config_.ssrc;
audio_receiver_config_.rtp_max_delay_ms = kTargetPlayoutDelayMs;
audio_receiver_config_.rtp_payload_type =
audio_sender_config_.rtp_payload_type;
@@ -497,9 +497,9 @@ class End2EndTest : public ::testing::Test {
max_number_of_video_buffers_used;
video_sender_config_.codec = video_codec;
- video_receiver_config_.feedback_ssrc =
+ video_receiver_config_.receiver_ssrc =
video_sender_config_.receiver_ssrc;
- video_receiver_config_.incoming_ssrc = video_sender_config_.ssrc;
+ video_receiver_config_.sender_ssrc = video_sender_config_.ssrc;
video_receiver_config_.rtp_max_delay_ms = kTargetPlayoutDelayMs;
video_receiver_config_.rtp_payload_type =
video_sender_config_.rtp_payload_type;
« no previous file with comments | « media/cast/test/cast_benchmarks.cc ('k') | media/cast/test/receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698