OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |