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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.cc

Issue 2991533002: Make FlexfecReceiveStreamImpl::started_ into std::atomic<bool> (Closed)
Patch Set: Use explicit store/load. Created 3 years, 5 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
Index: webrtc/call/flexfec_receive_stream_impl.cc
diff --git a/webrtc/call/flexfec_receive_stream_impl.cc b/webrtc/call/flexfec_receive_stream_impl.cc
index a1e9bc64ecccb2f70525812bc564d575f6161a96..22b71f0d5ceb44abf726f13429f50366d2b1b72b 100644
--- a/webrtc/call/flexfec_receive_stream_impl.cc
+++ b/webrtc/call/flexfec_receive_stream_impl.cc
@@ -168,11 +168,8 @@ FlexfecReceiveStreamImpl::~FlexfecReceiveStreamImpl() {
}
void FlexfecReceiveStreamImpl::OnRtpPacket(const RtpPacketReceived& packet) {
- {
- rtc::CritScope cs(&crit_);
- if (!started_)
- return;
- }
+ if (!started_.load())
+ return;
if (!receiver_)
return;
@@ -191,13 +188,11 @@ void FlexfecReceiveStreamImpl::OnRtpPacket(const RtpPacketReceived& packet) {
}
void FlexfecReceiveStreamImpl::Start() {
- rtc::CritScope cs(&crit_);
- started_ = true;
+ started_.store(true);
}
void FlexfecReceiveStreamImpl::Stop() {
- rtc::CritScope cs(&crit_);
- started_ = false;
+ started_.store(false);
}
// TODO(brandtr): Implement this member function when we have designed the
« webrtc/call/flexfec_receive_stream_impl.h ('K') | « webrtc/call/flexfec_receive_stream_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698