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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 // Extended RTCP settings. | 106 // Extended RTCP settings. |
107 struct RtcpXr { | 107 struct RtcpXr { |
108 // True if RTCP Receiver Reference Time Report Block extension | 108 // True if RTCP Receiver Reference Time Report Block extension |
109 // (RFC 3611) should be enabled. | 109 // (RFC 3611) should be enabled. |
110 bool receiver_reference_time_report = false; | 110 bool receiver_reference_time_report = false; |
111 } rtcp_xr; | 111 } rtcp_xr; |
112 | 112 |
113 // See draft-alvestrand-rmcat-remb for information. | 113 // See draft-alvestrand-rmcat-remb for information. |
114 bool remb = false; | 114 bool remb = false; |
115 | 115 |
| 116 // See draft-holmer-rmcat-transport-wide-cc-extensions for details. |
| 117 bool transport_cc = false; |
| 118 |
116 // See NackConfig for description. | 119 // See NackConfig for description. |
117 NackConfig nack; | 120 NackConfig nack; |
118 | 121 |
119 // See FecConfig for description. | 122 // See FecConfig for description. |
120 FecConfig fec; | 123 FecConfig fec; |
121 | 124 |
122 // RTX settings for incoming video payloads that may be received. RTX is | 125 // RTX settings for incoming video payloads that may be received. RTX is |
123 // disabled if there's no config present. | 126 // disabled if there's no config present. |
124 struct Rtx { | 127 struct Rtx { |
125 // SSRCs to use for the RTX streams. | 128 // SSRCs to use for the RTX streams. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 int target_delay_ms = 0; | 177 int target_delay_ms = 0; |
175 }; | 178 }; |
176 | 179 |
177 // TODO(pbos): Add info on currently-received codec to Stats. | 180 // TODO(pbos): Add info on currently-received codec to Stats. |
178 virtual Stats GetStats() const = 0; | 181 virtual Stats GetStats() const = 0; |
179 }; | 182 }; |
180 | 183 |
181 } // namespace webrtc | 184 } // namespace webrtc |
182 | 185 |
183 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 186 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |