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

Unified Diff: webrtc/call/video_receive_stream.cc

Issue 3000273002: Reverse |rtx_payload_types| map, and rename. (Closed)
Patch Set: Rebased. Created 3 years, 4 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 | « webrtc/call/video_receive_stream.h ('k') | webrtc/media/engine/webrtcvideoengine.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/video_receive_stream.cc
diff --git a/webrtc/call/video_receive_stream.cc b/webrtc/call/video_receive_stream.cc
index bc65869f915d09c2631a87fa2b8663b435a100fd..ef6c6084de2d8256e629c8c87581d00b63683632 100644
--- a/webrtc/call/video_receive_stream.cc
+++ b/webrtc/call/video_receive_stream.cc
@@ -113,8 +113,8 @@ std::string VideoReceiveStream::Config::Rtp::ToString() const {
ss << ", ulpfec: " << ulpfec.ToString();
ss << ", rtx_ssrc: " << rtx_ssrc;
ss << ", rtx_payload_types: {";
- for (auto& kv : rtx_payload_types) {
- ss << kv.first << " (apt) -> " << kv.second << " (pt), ";
+ for (auto& kv : rtx_associated_payload_types) {
+ ss << kv.first << " (pt) -> " << kv.second << " (apt), ";
}
ss << '}';
ss << ", extensions: [";
« no previous file with comments | « webrtc/call/video_receive_stream.h ('k') | webrtc/media/engine/webrtcvideoengine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698