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

Unified Diff: call/flexfec_receive_stream_impl.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 | « call/flexfec_receive_stream.h ('k') | call/flexfec_receive_stream_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: call/flexfec_receive_stream_impl.cc
diff --git a/call/flexfec_receive_stream_impl.cc b/call/flexfec_receive_stream_impl.cc
index bb68f6e6e82d0d9de52841de0de29315d276a673..55ac7f32b1edf19f0b698b2a3f56b14cc6071c90 100644
--- a/call/flexfec_receive_stream_impl.cc
+++ b/call/flexfec_receive_stream_impl.cc
@@ -44,13 +44,7 @@ std::string FlexfecReceiveStream::Config::ToString() const {
if (!protected_media_ssrcs.empty())
ss << protected_media_ssrcs[i];
ss << "], transport_cc: " << (transport_cc ? "on" : "off");
- ss << ", rtp_header_extensions: [";
- i = 0;
- for (; i + 1 < rtp_header_extensions.size(); ++i)
- ss << rtp_header_extensions[i].ToString() << ", ";
- if (!rtp_header_extensions.empty())
- ss << rtp_header_extensions[i].ToString();
- ss << "]}";
+ ss << "}";
return ss.str();
}
« no previous file with comments | « call/flexfec_receive_stream.h ('k') | call/flexfec_receive_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698