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

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

Issue 3005633002: Revert of Verify sender ssrc when receiving rtcp target bitrate (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 PacketInformation* packet_information) 158 PacketInformation* packet_information)
159 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 159 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
160 160
161 void HandleXrReceiveReferenceTime(uint32_t sender_ssrc, 161 void HandleXrReceiveReferenceTime(uint32_t sender_ssrc,
162 const rtcp::Rrtr& rrtr) 162 const rtcp::Rrtr& rrtr)
163 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 163 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
164 164
165 void HandleXrDlrrReportBlock(const rtcp::ReceiveTimeInfo& rti) 165 void HandleXrDlrrReportBlock(const rtcp::ReceiveTimeInfo& rti)
166 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 166 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
167 167
168 void HandleXrTargetBitrate(uint32_t ssrc, 168 void HandleXrTargetBitrate(const rtcp::TargetBitrate& target_bitrate,
169 const rtcp::TargetBitrate& target_bitrate,
170 PacketInformation* packet_information) 169 PacketInformation* packet_information)
171 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 170 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
172 171
173 void HandleNack(const rtcp::CommonHeader& rtcp_block, 172 void HandleNack(const rtcp::CommonHeader& rtcp_block,
174 PacketInformation* packet_information) 173 PacketInformation* packet_information)
175 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 174 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
176 175
177 void HandleBye(const rtcp::CommonHeader& rtcp_block) 176 void HandleBye(const rtcp::CommonHeader& rtcp_block)
178 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_); 177 EXCLUSIVE_LOCKS_REQUIRED(rtcp_receiver_lock_);
179 178
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_; 255 RtcpPacketTypeCounterObserver* const packet_type_counter_observer_;
257 RtcpPacketTypeCounter packet_type_counter_; 256 RtcpPacketTypeCounter packet_type_counter_;
258 257
259 RtcpNackStats nack_stats_; 258 RtcpNackStats nack_stats_;
260 259
261 size_t num_skipped_packets_; 260 size_t num_skipped_packets_;
262 int64_t last_skipped_packets_warning_ms_; 261 int64_t last_skipped_packets_warning_ms_;
263 }; 262 };
264 } // namespace webrtc 263 } // namespace webrtc
265 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_ 264 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698