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

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

Issue 2644303002: Delete class SSRCDatabase, and its global ssrc registry. (Closed)
Patch Set: Rebase. Created 3 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
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 FRIEND_TEST_ALL_PREFIXES(RtpRtcpImplTest, RttForReceiverOnly); 326 FRIEND_TEST_ALL_PREFIXES(RtpRtcpImplTest, RttForReceiverOnly);
327 int64_t RtcpReportInterval(); 327 int64_t RtcpReportInterval();
328 void SetRtcpReceiverSsrcs(uint32_t main_ssrc); 328 void SetRtcpReceiverSsrcs(uint32_t main_ssrc);
329 329
330 void set_rtt_ms(int64_t rtt_ms); 330 void set_rtt_ms(int64_t rtt_ms);
331 int64_t rtt_ms() const; 331 int64_t rtt_ms() const;
332 332
333 bool TimeToSendFullNackList(int64_t now) const; 333 bool TimeToSendFullNackList(int64_t now) const;
334 334
335 const bool audio_; 335 const bool audio_;
336 bool collision_detected_;
337 int64_t last_process_time_; 336 int64_t last_process_time_;
338 int64_t last_bitrate_process_time_; 337 int64_t last_bitrate_process_time_;
339 int64_t last_rtt_process_time_; 338 int64_t last_rtt_process_time_;
340 uint16_t packet_overhead_; 339 uint16_t packet_overhead_;
341 340
342 // Send side 341 // Send side
343 int64_t nack_last_time_sent_full_; 342 int64_t nack_last_time_sent_full_;
344 uint32_t nack_last_time_sent_full_prev_; 343 uint32_t nack_last_time_sent_full_prev_;
345 uint16_t nack_last_seq_number_sent_; 344 uint16_t nack_last_seq_number_sent_;
346 345
347 KeyFrameRequestMethod key_frame_req_method_; 346 KeyFrameRequestMethod key_frame_req_method_;
348 347
349 RemoteBitrateEstimator* remote_bitrate_; 348 RemoteBitrateEstimator* remote_bitrate_;
350 349
351 RtcpRttStats* rtt_stats_; 350 RtcpRttStats* rtt_stats_;
352 351
353 PacketLossStats send_loss_stats_; 352 PacketLossStats send_loss_stats_;
354 PacketLossStats receive_loss_stats_; 353 PacketLossStats receive_loss_stats_;
355 354
356 // The processed RTT from RtcpRttStats. 355 // The processed RTT from RtcpRttStats.
357 rtc::CriticalSection critical_section_rtt_; 356 rtc::CriticalSection critical_section_rtt_;
358 int64_t rtt_ms_; 357 int64_t rtt_ms_;
359 }; 358 };
360 359
361 } // namespace webrtc 360 } // namespace webrtc
362 361
363 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ 362 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698