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

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

Issue 2061423003: Refactor NACK bitrate allocation (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed data race Created 4 years, 6 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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 } 885 }
886 // Change local SSRC and inform all objects about the new SSRC. 886 // Change local SSRC and inform all objects about the new SSRC.
887 rtcp_sender_.SetSSRC(new_ssrc); 887 rtcp_sender_.SetSSRC(new_ssrc);
888 SetRtcpReceiverSsrcs(new_ssrc); 888 SetRtcpReceiverSsrcs(new_ssrc);
889 } 889 }
890 } 890 }
891 891
892 void ModuleRtpRtcpImpl::BitrateSent(uint32_t* total_rate, 892 void ModuleRtpRtcpImpl::BitrateSent(uint32_t* total_rate,
893 uint32_t* video_rate, 893 uint32_t* video_rate,
894 uint32_t* fec_rate, 894 uint32_t* fec_rate,
895 uint32_t* nack_rate) const { 895 uint32_t* nack_rate) {
896 *total_rate = rtp_sender_.BitrateSent(); 896 *total_rate = rtp_sender_.BitrateSent();
897 *video_rate = rtp_sender_.VideoBitrateSent(); 897 *video_rate = rtp_sender_.VideoBitrateSent();
898 *fec_rate = rtp_sender_.FecOverheadRate(); 898 *fec_rate = rtp_sender_.FecOverheadRate();
899 *nack_rate = rtp_sender_.NackOverheadRate(); 899 *nack_rate = rtp_sender_.NackOverheadRate();
900 } 900 }
901 901
902 void ModuleRtpRtcpImpl::OnRequestSendReport() { 902 void ModuleRtpRtcpImpl::OnRequestSendReport() {
903 SendRTCP(kRtcpSr); 903 SendRTCP(kRtcpSr);
904 } 904 }
905 905
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 void ModuleRtpRtcpImpl::RegisterSendChannelRtpStatisticsCallback( 996 void ModuleRtpRtcpImpl::RegisterSendChannelRtpStatisticsCallback(
997 StreamDataCountersCallback* callback) { 997 StreamDataCountersCallback* callback) {
998 rtp_sender_.RegisterRtpStatisticsCallback(callback); 998 rtp_sender_.RegisterRtpStatisticsCallback(callback);
999 } 999 }
1000 1000
1001 StreamDataCountersCallback* 1001 StreamDataCountersCallback*
1002 ModuleRtpRtcpImpl::GetSendChannelRtpStatisticsCallback() const { 1002 ModuleRtpRtcpImpl::GetSendChannelRtpStatisticsCallback() const {
1003 return rtp_sender_.GetRtpStatisticsCallback(); 1003 return rtp_sender_.GetRtpStatisticsCallback();
1004 } 1004 }
1005 } // namespace webrtc 1005 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698