Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(732)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_sender.h

Issue 1702043002: Remove video-codec max bitrate from TMMBN. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 bool REMB() const; 129 bool REMB() const;
130 130
131 void SetREMBStatus(bool enable); 131 void SetREMBStatus(bool enable);
132 132
133 void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs); 133 void SetREMBData(uint32_t bitrate, const std::vector<uint32_t>& ssrcs);
134 134
135 bool TMMBR() const; 135 bool TMMBR() const;
136 136
137 void SetTMMBRStatus(bool enable); 137 void SetTMMBRStatus(bool enable);
138 138
139 int32_t SetTMMBN(const TMMBRSet* boundingSet, uint32_t maxBitrateKbit); 139 int32_t SetTMMBN(const TMMBRSet* boundingSet);
140 140
141 int32_t SetApplicationSpecificData(uint8_t subType, 141 int32_t SetApplicationSpecificData(uint8_t subType,
142 uint32_t name, 142 uint32_t name,
143 const uint8_t* data, 143 const uint8_t* data,
144 uint16_t length); 144 uint16_t length);
145 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric); 145 int32_t SetRTCPVoIPMetrics(const RTCPVoIPMetric* VoIPMetric);
146 146
147 void SendRtcpXrReceiverReferenceTime(bool enable); 147 void SendRtcpXrReceiverReferenceTime(bool enable);
148 148
149 bool RtcpXrReceiverReferenceTime() const; 149 bool RtcpXrReceiverReferenceTime() const;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 299
300 typedef rtc::scoped_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)( 300 typedef rtc::scoped_ptr<rtcp::RtcpPacket> (RTCPSender::*BuilderFunc)(
301 const RtcpContext&); 301 const RtcpContext&);
302 std::map<RTCPPacketType, BuilderFunc> builders_; 302 std::map<RTCPPacketType, BuilderFunc> builders_;
303 303
304 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender); 304 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTCPSender);
305 }; 305 };
306 } // namespace webrtc 306 } // namespace webrtc
307 307
308 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_ 308 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_SENDER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h ('k') | webrtc/modules/rtp_rtcp/source/rtcp_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698