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

Unified Diff: chrome/browser/media/cast_transport_host_filter_unittest.cc

Issue 2113783002: Refactoring: Merge VideoSenderConfig and AudioSenderConfig. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: chrome/browser/media/cast_transport_host_filter_unittest.cc
diff --git a/chrome/browser/media/cast_transport_host_filter_unittest.cc b/chrome/browser/media/cast_transport_host_filter_unittest.cc
index b181bc3534cee7e66905e38474e7244ab3bdce9d..7b558da23b49442044832c9d960691701e674e39 100644
--- a/chrome/browser/media/cast_transport_host_filter_unittest.cc
+++ b/chrome/browser/media/cast_transport_host_filter_unittest.cc
@@ -92,12 +92,14 @@ TEST_F(CastTransportHostFilterTest, SimpleMessages) {
media::cast::CastTransportRtpConfig audio_config;
audio_config.ssrc = 1;
audio_config.feedback_ssrc = 2;
+ audio_config.rtp_payload_type = media::cast::RtpPayloadType::AUDIO_OPUS;
CastHostMsg_InitializeAudio init_audio_msg(kChannelId, audio_config);
FakeSend(init_audio_msg);
media::cast::CastTransportRtpConfig video_config;
video_config.ssrc = 11;
video_config.feedback_ssrc = 12;
+ video_config.rtp_payload_type = media::cast::RtpPayloadType::VIDEO_VP8;
CastHostMsg_InitializeVideo init_video_msg(kChannelId, video_config);
FakeSend(init_video_msg);
« no previous file with comments | « no previous file | chrome/common/cast_messages.h » ('j') | chrome/renderer/extensions/cast_streaming_native_handler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698