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

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

Issue 2254703003: Remove TMMBRSet class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback Created 4 years, 4 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 234
235 // Full intra request 235 // Full intra request
236 uint8_t sequence_number_fir_ GUARDED_BY(critical_section_rtcp_sender_); 236 uint8_t sequence_number_fir_ GUARDED_BY(critical_section_rtcp_sender_);
237 237
238 // REMB 238 // REMB
239 uint32_t remb_bitrate_ GUARDED_BY(critical_section_rtcp_sender_); 239 uint32_t remb_bitrate_ GUARDED_BY(critical_section_rtcp_sender_);
240 std::vector<uint32_t> remb_ssrcs_ GUARDED_BY(critical_section_rtcp_sender_); 240 std::vector<uint32_t> remb_ssrcs_ GUARDED_BY(critical_section_rtcp_sender_);
241 241
242 std::vector<rtcp::TmmbItem> tmmbn_to_send_ 242 std::vector<rtcp::TmmbItem> tmmbn_to_send_
243 GUARDED_BY(critical_section_rtcp_sender_); 243 GUARDED_BY(critical_section_rtcp_sender_);
244 uint32_t tmmbr_send_ GUARDED_BY(critical_section_rtcp_sender_); 244 uint32_t tmmbr_send_bps_ GUARDED_BY(critical_section_rtcp_sender_);
245 uint32_t packet_oh_send_ GUARDED_BY(critical_section_rtcp_sender_); 245 uint32_t packet_oh_send_ GUARDED_BY(critical_section_rtcp_sender_);
246 size_t max_payload_length_; 246 size_t max_payload_length_;
247 247
248 // APP 248 // APP
249 uint8_t app_sub_type_ GUARDED_BY(critical_section_rtcp_sender_); 249 uint8_t app_sub_type_ GUARDED_BY(critical_section_rtcp_sender_);
250 uint32_t app_name_ GUARDED_BY(critical_section_rtcp_sender_); 250 uint32_t app_name_ GUARDED_BY(critical_section_rtcp_sender_);
251 std::unique_ptr<uint8_t[]> app_data_ 251 std::unique_ptr<uint8_t[]> app_data_
252 GUARDED_BY(critical_section_rtcp_sender_); 252 GUARDED_BY(critical_section_rtcp_sender_);
253 uint16_t app_length_ GUARDED_BY(critical_section_rtcp_sender_); 253 uint16_t app_length_ GUARDED_BY(critical_section_rtcp_sender_);
254 254
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698