Index: webrtc/modules/audio_processing/agc/standalone_vad.cc |
diff --git a/webrtc/modules/audio_processing/vad/standalone_vad.cc b/webrtc/modules/audio_processing/agc/standalone_vad.cc |
similarity index 93% |
rename from webrtc/modules/audio_processing/vad/standalone_vad.cc |
rename to webrtc/modules/audio_processing/agc/standalone_vad.cc |
index 783785184dbd017a7f33f41f4f7973df25a671d8..e8593254543c346f93010c56181e809114879d2f 100644 |
--- a/webrtc/modules/audio_processing/vad/standalone_vad.cc |
+++ b/webrtc/modules/audio_processing/agc/standalone_vad.cc |
@@ -8,7 +8,7 @@ |
* be found in the AUTHORS file in the root of the source tree. |
*/ |
-#include "webrtc/modules/audio_processing/vad/standalone_vad.h" |
+#include "webrtc/modules/audio_processing/agc/standalone_vad.h" |
#include <assert.h> |
@@ -21,8 +21,10 @@ namespace webrtc { |
static const int kDefaultStandaloneVadMode = 3; |
StandaloneVad::StandaloneVad(VadInst* vad) |
- : vad_(vad), buffer_(), index_(0), mode_(kDefaultStandaloneVadMode) { |
-} |
+ : vad_(vad), |
+ buffer_(), |
+ index_(0), |
+ mode_(kDefaultStandaloneVadMode) {} |
StandaloneVad::~StandaloneVad() { |
WebRtcVad_Free(vad_); |
@@ -91,3 +93,4 @@ int StandaloneVad::set_mode(int mode) { |
} |
} // namespace webrtc |
+ |