Index: webrtc/modules/audio_processing/audio_processing_impl.h |
diff --git a/webrtc/modules/audio_processing/audio_processing_impl.h b/webrtc/modules/audio_processing/audio_processing_impl.h |
index 72dfbf419b27ee264d870c22ef5a71330ae4d7e0..68cee0607f1de7a5c44b37459c651597a2c05e2f 100644 |
--- a/webrtc/modules/audio_processing/audio_processing_impl.h |
+++ b/webrtc/modules/audio_processing/audio_processing_impl.h |
@@ -17,6 +17,7 @@ |
#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/base/thread_annotations.h" |
+#include "webrtc/base/thread_checker.h" |
#include "webrtc/modules/audio_processing/include/audio_processing.h" |
namespace webrtc { |
@@ -154,6 +155,8 @@ class AudioProcessingImpl : public AudioProcessing { |
std::list<ProcessingComponent*> component_list_; |
CriticalSectionWrapper* crit_; |
+ rtc::ThreadChecker render_thread_checker_; |
the sun
2015/11/11 10:50:47
Why no rtc::ThreadChecker signal_thread_checker_;
peah-webrtc
2015/11/17 16:03:46
I agree that these names are not that good as it i
the sun
2015/11/18 08:53:10
render_... and capture_... or good names, don't wo
|
+ rtc::ThreadChecker capture_thread_checker_; |
rtc::scoped_ptr<AudioBuffer> render_audio_; |
rtc::scoped_ptr<AudioBuffer> capture_audio_; |
rtc::scoped_ptr<AudioConverter> render_converter_; |