| Index: webrtc/video/video_capture_input.h
|
| diff --git a/webrtc/video/video_capture_input.h b/webrtc/video/video_capture_input.h
|
| index cf50843d75b6580d6d622d968bfe0f053db3eca8..b93d803702ab3002a1111a735162634481d90938 100644
|
| --- a/webrtc/video/video_capture_input.h
|
| +++ b/webrtc/video/video_capture_input.h
|
| @@ -13,7 +13,6 @@
|
|
|
| #include <vector>
|
|
|
| -#include "webrtc/base/atomicops.h"
|
| #include "webrtc/base/criticalsection.h"
|
| #include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/base/thread_annotations.h"
|
| @@ -82,7 +81,7 @@
|
| rtc::scoped_ptr<ThreadWrapper> encoder_thread_;
|
| rtc::scoped_ptr<EventWrapper> capture_event_;
|
|
|
| - rtc::AtomicInt stop_;
|
| + volatile int stop_;
|
|
|
| VideoFrame captured_frame_ GUARDED_BY(capture_cs_.get());
|
| // Used to make sure incoming time stamp is increasing for every frame.
|
|
|