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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.h

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
« no previous file with comments | « no previous file | webrtc/call/flexfec_receive_stream_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/flexfec_receive_stream_impl.h
diff --git a/webrtc/call/flexfec_receive_stream_impl.h b/webrtc/call/flexfec_receive_stream_impl.h
index 81c09d6fac79b3c91d2f0ad7f694310bc73d5590..408ffe825f46080d1d5c903554a688402c6ff030 100644
--- a/webrtc/call/flexfec_receive_stream_impl.h
+++ b/webrtc/call/flexfec_receive_stream_impl.h
@@ -11,6 +11,7 @@
#ifndef WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_
#define WEBRTC_CALL_FLEXFEC_RECEIVE_STREAM_IMPL_H_
+#include <atomic>
#include <memory>
#include "webrtc/call/flexfec_receive_stream.h"
@@ -53,8 +54,7 @@ class FlexfecReceiveStreamImpl : public FlexfecReceiveStream,
private:
// Config.
const Config config_;
- bool started_ GUARDED_BY(crit_);
- rtc::CriticalSection crit_;
+ std::atomic<bool> started_;
brandtr 2017/08/01 07:08:02 The start/stop functionality doesn't really serve
eladalon 2017/08/01 08:27:46 Okay, thanks. In the meantime, do you think should
brandtr 2017/08/01 08:39:03 Might as well land it, since it's a nice improveme
// Erasure code interfacing.
const std::unique_ptr<FlexfecReceiver> receiver_;
« no previous file with comments | « no previous file | webrtc/call/flexfec_receive_stream_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698