| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 // Max RTP packet size delivered to send transport from VideoEngine. | 123 // Max RTP packet size delivered to send transport from VideoEngine. |
| 124 size_t max_packet_size = kDefaultMaxPacketSize; | 124 size_t max_packet_size = kDefaultMaxPacketSize; |
| 125 | 125 |
| 126 // RTP header extensions to use for this send stream. | 126 // RTP header extensions to use for this send stream. |
| 127 std::vector<RtpExtension> extensions; | 127 std::vector<RtpExtension> extensions; |
| 128 | 128 |
| 129 // See NackConfig for description. | 129 // See NackConfig for description. |
| 130 NackConfig nack; | 130 NackConfig nack; |
| 131 | 131 |
| 132 // See FecConfig for description. | 132 // See UlpfecConfig for description. |
| 133 FecConfig fec; | 133 UlpfecConfig ulpfec; |
| 134 | 134 |
| 135 // Settings for RTP retransmission payload format, see RFC 4588 for | 135 // Settings for RTP retransmission payload format, see RFC 4588 for |
| 136 // details. | 136 // details. |
| 137 struct Rtx { | 137 struct Rtx { |
| 138 std::string ToString() const; | 138 std::string ToString() const; |
| 139 // SSRCs to use for the RTX streams. | 139 // SSRCs to use for the RTX streams. |
| 140 std::vector<uint32_t> ssrcs; | 140 std::vector<uint32_t> ssrcs; |
| 141 | 141 |
| 142 // Payload type to use for the RTX stream. | 142 // Payload type to use for the RTX stream. |
| 143 int payload_type = -1; | 143 int payload_type = -1; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 EnableEncodedFrameRecording(std::vector<rtc::PlatformFile>(), 0); | 217 EnableEncodedFrameRecording(std::vector<rtc::PlatformFile>(), 0); |
| 218 } | 218 } |
| 219 | 219 |
| 220 protected: | 220 protected: |
| 221 virtual ~VideoSendStream() {} | 221 virtual ~VideoSendStream() {} |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 } // namespace webrtc | 224 } // namespace webrtc |
| 225 | 225 |
| 226 #endif // WEBRTC_VIDEO_SEND_STREAM_H_ | 226 #endif // WEBRTC_VIDEO_SEND_STREAM_H_ |
| OLD | NEW |