| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 // What RTCP mode to use in the reports. | 66 // What RTCP mode to use in the reports. |
| 67 RtcpMode rtcp_mode = RtcpMode::kCompound; | 67 RtcpMode rtcp_mode = RtcpMode::kCompound; |
| 68 | 68 |
| 69 // Transport for outgoing RTCP packets. | 69 // Transport for outgoing RTCP packets. |
| 70 Transport* rtcp_send_transport = nullptr; | 70 Transport* rtcp_send_transport = nullptr; |
| 71 | 71 |
| 72 // |transport_cc| is true whenever the send-side BWE RTCP feedback message | 72 // |transport_cc| is true whenever the send-side BWE RTCP feedback message |
| 73 // has been negotiated. This is a prerequisite for enabling send-side BWE. | 73 // has been negotiated. This is a prerequisite for enabling send-side BWE. |
| 74 bool transport_cc = false; | 74 bool transport_cc = false; |
| 75 | |
| 76 // RTP header extensions that have been negotiated for this track. | |
| 77 std::vector<RtpExtension> rtp_header_extensions; | |
| 78 }; | 75 }; |
| 79 | 76 |
| 80 virtual Stats GetStats() const = 0; | 77 virtual Stats GetStats() const = 0; |
| 81 | 78 |
| 82 virtual const Config& GetConfig() const = 0; | 79 virtual const Config& GetConfig() const = 0; |
| 83 }; | 80 }; |
| 84 | 81 |
| 85 } // namespace webrtc | 82 } // namespace webrtc |
| 86 | 83 |
| 87 #endif // CALL_FLEXFEC_RECEIVE_STREAM_H_ | 84 #endif // CALL_FLEXFEC_RECEIVE_STREAM_H_ |
| OLD | NEW |