| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 // See draft-alvestrand-rmcat-remb for information. | 128 // See draft-alvestrand-rmcat-remb for information. |
| 129 bool remb = false; | 129 bool remb = false; |
| 130 | 130 |
| 131 // See draft-holmer-rmcat-transport-wide-cc-extensions for details. | 131 // See draft-holmer-rmcat-transport-wide-cc-extensions for details. |
| 132 bool transport_cc = false; | 132 bool transport_cc = false; |
| 133 | 133 |
| 134 // See NackConfig for description. | 134 // See NackConfig for description. |
| 135 NackConfig nack; | 135 NackConfig nack; |
| 136 | 136 |
| 137 // See FecConfig for description. | 137 // See UlpfecConfig for description. |
| 138 FecConfig fec; | 138 UlpfecConfig ulpfec; |
| 139 | 139 |
| 140 // RTX settings for incoming video payloads that may be received. RTX is | 140 // RTX settings for incoming video payloads that may be received. RTX is |
| 141 // disabled if there's no config present. | 141 // disabled if there's no config present. |
| 142 struct Rtx { | 142 struct Rtx { |
| 143 // SSRCs to use for the RTX streams. | 143 // SSRCs to use for the RTX streams. |
| 144 uint32_t ssrc = 0; | 144 uint32_t ssrc = 0; |
| 145 | 145 |
| 146 // Payload type to use for the RTX stream. | 146 // Payload type to use for the RTX stream. |
| 147 int payload_type = 0; | 147 int payload_type = 0; |
| 148 }; | 148 }; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 219 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
| 220 } | 220 } |
| 221 | 221 |
| 222 protected: | 222 protected: |
| 223 virtual ~VideoReceiveStream() {} | 223 virtual ~VideoReceiveStream() {} |
| 224 }; | 224 }; |
| 225 | 225 |
| 226 } // namespace webrtc | 226 } // namespace webrtc |
| 227 | 227 |
| 228 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 228 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
| OLD | NEW |