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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.h

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
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_;
// 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') | webrtc/call/flexfec_receive_stream_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698