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 c9db63994d1f2a5893f4c4eafff0f061ca65df07..c50d7e7986c8477b5d76201d42923653536bf48e 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_; |
+ rtc::ThreadChecker capture_thread_; |
kwiberg-webrtc
2015/10/26 13:57:56
*_thread_checker_ ?
peah-webrtc
2015/11/05 11:47:33
Done.
|
rtc::scoped_ptr<AudioBuffer> render_audio_; |
rtc::scoped_ptr<AudioBuffer> capture_audio_; |
rtc::scoped_ptr<AudioConverter> render_converter_; |