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

Unified Diff: webrtc/voice_engine/channel.cc

Issue 2710363003: Fix TSAN race in webrtc::voe::Channel (Closed)
Patch Set: Merge and added TODO 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 side-by-side diff with in-line comments
Download patch
« webrtc/voice_engine/channel.h ('K') | « webrtc/voice_engine/channel.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/channel.cc
diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc
index 1d54821a50c882d1e85a7426295948c475333f0b..b4b11ee7eb076b4c4d1ff7b51c9740bd131a875b 100644
--- a/webrtc/voice_engine/channel.cc
+++ b/webrtc/voice_engine/channel.cc
@@ -2778,23 +2778,27 @@ void Channel::SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats) {
rtcp_rtt_stats_proxy_->SetRtcpRttStats(rtcp_rtt_stats);
}
-void Channel::UpdateOverheadForEncoder() {
+void Channel::UpdateOverheadForEncoder(size_t overhead_per_packet) {
audio_coding_->ModifyEncoder([&](std::unique_ptr<AudioEncoder>* encoder) {
if (*encoder) {
- (*encoder)->OnReceivedOverhead(transport_overhead_per_packet_ +
- rtp_overhead_per_packet_);
+ (*encoder)->OnReceivedOverhead(overhead_per_packet);
}
});
}
+// TODO(solenberg): Make AudioSendStream an OverheadObserver instead.
void Channel::SetTransportOverhead(size_t transport_overhead_per_packet) {
+ rtc::CritScope cs(&overhead_per_packet_lock_);
transport_overhead_per_packet_ = transport_overhead_per_packet;
- UpdateOverheadForEncoder();
+ UpdateOverheadForEncoder(transport_overhead_per_packet_ +
+ rtp_overhead_per_packet_);
}
void Channel::OnOverheadChanged(size_t overhead_bytes_per_packet) {
+ rtc::CritScope cs(&overhead_per_packet_lock_);
rtp_overhead_per_packet_ = overhead_bytes_per_packet;
- UpdateOverheadForEncoder();
+ UpdateOverheadForEncoder(transport_overhead_per_packet_ +
+ rtp_overhead_per_packet_);
}
int Channel::GetNetworkStatistics(NetworkStatistics& stats) {
« webrtc/voice_engine/channel.h ('K') | « webrtc/voice_engine/channel.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698