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

Side by Side Diff: webrtc/video/video_receive_stream.cc

Issue 2391963002: Rename FecConfig to UlpfecConfig in config.h. (Closed)
Patch Set: Rebase. Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « webrtc/video/video_quality_test.cc ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ss << ", rtcp_mode: " 87 ss << ", rtcp_mode: "
88 << (rtcp_mode == RtcpMode::kCompound ? "RtcpMode::kCompound" 88 << (rtcp_mode == RtcpMode::kCompound ? "RtcpMode::kCompound"
89 : "RtcpMode::kReducedSize"); 89 : "RtcpMode::kReducedSize");
90 ss << ", rtcp_xr: "; 90 ss << ", rtcp_xr: ";
91 ss << "{receiver_reference_time_report: " 91 ss << "{receiver_reference_time_report: "
92 << (rtcp_xr.receiver_reference_time_report ? "on" : "off"); 92 << (rtcp_xr.receiver_reference_time_report ? "on" : "off");
93 ss << '}'; 93 ss << '}';
94 ss << ", remb: " << (remb ? "on" : "off"); 94 ss << ", remb: " << (remb ? "on" : "off");
95 ss << ", transport_cc: " << (transport_cc ? "on" : "off"); 95 ss << ", transport_cc: " << (transport_cc ? "on" : "off");
96 ss << ", nack: {rtp_history_ms: " << nack.rtp_history_ms << '}'; 96 ss << ", nack: {rtp_history_ms: " << nack.rtp_history_ms << '}';
97 ss << ", fec: " << fec.ToString(); 97 ss << ", ulpfec: " << ulpfec.ToString();
98 ss << ", rtx: {"; 98 ss << ", rtx: {";
99 for (auto& kv : rtx) { 99 for (auto& kv : rtx) {
100 ss << kv.first << " -> "; 100 ss << kv.first << " -> ";
101 ss << "{ssrc: " << kv.second.ssrc; 101 ss << "{ssrc: " << kv.second.ssrc;
102 ss << ", payload_type: " << kv.second.payload_type; 102 ss << ", payload_type: " << kv.second.payload_type;
103 ss << '}'; 103 ss << '}';
104 } 104 }
105 ss << '}'; 105 ss << '}';
106 ss << ", extensions: ["; 106 ss << ", extensions: [";
107 for (size_t i = 0; i < extensions.size(); ++i) { 107 for (size_t i = 0; i < extensions.size(); ++i) {
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 RequestKeyFrame(); 409 RequestKeyFrame();
410 } 410 }
411 } 411 }
412 412
413 void VideoReceiveStream::RequestKeyFrame() { 413 void VideoReceiveStream::RequestKeyFrame() {
414 rtp_stream_receiver_.RequestKeyFrame(); 414 rtp_stream_receiver_.RequestKeyFrame();
415 } 415 }
416 416
417 } // namespace internal 417 } // namespace internal
418 } // namespace webrtc 418 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/video/video_quality_test.cc ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698