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

Unified Diff: video/video_quality_test.cc

Issue 2826263004: Move responsibility for RTP header extensions on video receive. (Closed)
Patch Set: Crude rebase. Created 3 years, 3 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 | « video/rtp_video_stream_receiver.cc ('k') | video/video_send_stream_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: video/video_quality_test.cc
diff --git a/video/video_quality_test.cc b/video/video_quality_test.cc
index 0bf4587b2f6c910791255f90d847976953966d25..ea19ac3f79a1ca412930bd644cb3b484cc42d128 100644
--- a/video/video_quality_test.cc
+++ b/video/video_quality_test.cc
@@ -1530,6 +1530,7 @@ void VideoQualityTest::SetupVideo(Transport* send_transport,
video_send_config_.rtp.flexfec.protected_media_ssrcs;
flexfec_receive_config.local_ssrc = kReceiverLocalVideoSsrc;
flexfec_receive_config.transport_cc = params_.call.send_side_bwe;
+#if 0
if (params_.call.send_side_bwe) {
flexfec_receive_config.rtp_header_extensions.push_back(
RtpExtension(RtpExtension::kTransportSequenceNumberUri,
@@ -1538,6 +1539,7 @@ void VideoQualityTest::SetupVideo(Transport* send_transport,
flexfec_receive_config.rtp_header_extensions.push_back(RtpExtension(
RtpExtension::kAbsSendTimeUri, test::kAbsSendTimeExtensionId));
}
+#endif
flexfec_receive_configs_.push_back(flexfec_receive_config);
if (num_video_streams > 0) {
video_receive_configs_[0].rtp.protected_by_flexfec = true;
@@ -1621,8 +1623,10 @@ void VideoQualityTest::SetupThumbnails(Transport* send_transport,
thumbnail_receive_config.rtp.remb = false;
thumbnail_receive_config.rtp.transport_cc = true;
thumbnail_receive_config.rtp.local_ssrc = kReceiverLocalVideoSsrc;
+#if 0
for (const RtpExtension& extension : thumbnail_send_config.rtp.extensions)
thumbnail_receive_config.rtp.extensions.push_back(extension);
+#endif
thumbnail_receive_config.renderer = &fake_renderer_;
VideoReceiveStream::Decoder decoder =
« no previous file with comments | « video/rtp_video_stream_receiver.cc ('k') | video/video_send_stream_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698