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

Unified Diff: call/video_receive_stream.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/video_receive_stream.h ('k') | logging/rtc_event_log/rtc_event_log_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: call/video_receive_stream.cc
diff --git a/call/video_receive_stream.cc b/call/video_receive_stream.cc
index f338805746db4848a1430054451ba077c4f021e0..4643e3015044e92fe408b0789ab5c5879ebd8fa3 100644
--- a/call/video_receive_stream.cc
+++ b/call/video_receive_stream.cc
@@ -118,13 +118,6 @@ std::string VideoReceiveStream::Config::Rtp::ToString() const {
ss << kv.first << " (pt) -> " << kv.second << " (apt), ";
}
ss << '}';
- ss << ", extensions: [";
- for (size_t i = 0; i < extensions.size(); ++i) {
- ss << extensions[i].ToString();
- if (i != extensions.size() - 1)
- ss << ", ";
- }
- ss << ']';
ss << '}';
return ss.str();
}
« no previous file with comments | « call/video_receive_stream.h ('k') | logging/rtc_event_log/rtc_event_log_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698