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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.cc

Issue 2991533002: Make FlexfecReceiveStreamImpl::started_ into std::atomic<bool> (Closed)
Patch Set: 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
« no previous file with comments | « webrtc/call/flexfec_receive_stream_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..1f1dcacfaba68a96064402d6fc742ab9c54d91c6 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_)
danilchap 2017/07/24 13:40:23 prefer .load() over operator bool to be explicit i
eladalon 2017/07/24 16:09:02 Done.
+ return;
if (!receiver_)
return;
@@ -191,12 +188,10 @@ void FlexfecReceiveStreamImpl::OnRtpPacket(const RtpPacketReceived& packet) {
}
void FlexfecReceiveStreamImpl::Start() {
- rtc::CritScope cs(&crit_);
started_ = true;
danilchap 2017/07/24 13:40:23 same here: prefer store
eladalon 2017/07/24 16:09:02 Done.
}
void FlexfecReceiveStreamImpl::Stop() {
- rtc::CritScope cs(&crit_);
started_ = false;
}
« no previous file with comments | « 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