OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 void SetREMBStatus(bool enable); | 128 void SetREMBStatus(bool enable); |
129 | 129 |
130 void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs); | 130 void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs); |
131 | 131 |
132 bool TMMBR() const; | 132 bool TMMBR() const; |
133 | 133 |
134 void SetTMMBRStatus(bool enable); | 134 void SetTMMBRStatus(bool enable); |
135 | 135 |
136 void SetMaxPayloadLength(size_t max_payload_length); | 136 void SetMaxPayloadLength(size_t max_payload_length); |
137 | 137 |
138 void SetTMMBN(const std::vector<rtcp::TmmbItem>* boundingSet); | 138 void SetTmmbn(std::vector<rtcp::TmmbItem> bounding_set); |
139 | 139 |
140 int32_t SetApplicationSpecificData(uint8_t subType, | 140 int32_t SetApplicationSpecificData(uint8_t subType, |
141 uint32_t name, | 141 uint32_t name, |
142 const uint8_t* data, | 142 const uint8_t* data, |
143 uint16_t length); | 143 uint16_t length); |
144 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric); | 144 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric); |
145 | 145 |
146 void SendRtcpXrReceiverReferenceTime(bool enable); | 146 void SendRtcpXrReceiverReferenceTime(bool enable); |
147 | 147 |
148 bool RtcpXrReceiverReferenceTime() const; | 148 bool RtcpXrReceiverReferenceTime() const; |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 | 288 |
289 typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( | 289 typedef std::unique_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( |
290 const RtcpContext&); | 290 const RtcpContext&); |
291 std::map<RTCPPacketType, BuilderFunc> builders_; | 291 std::map<RTCPPacketType, BuilderFunc> builders_; |
292 | 292 |
293 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); | 293 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); |
294 }; | 294 }; |
295 } // namespace webrtc | 295 } // namespace webrtc |
296 | 296 |
297 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ | 297 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ |
OLD | NEW |