| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2  *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 
| 3  * | 3  * | 
| 4  *  Use of this source code is governed by a BSD-style license | 4  *  Use of this source code is governed by a BSD-style license | 
| 5  *  that can be found in the LICENSE file in the root of the source | 5  *  that can be found in the LICENSE file in the root of the source | 
| 6  *  tree. An additional intellectual property rights grant can be found | 6  *  tree. An additional intellectual property rights grant can be found | 
| 7  *  in the file PATENTS.  All contributing project authors may | 7  *  in the file PATENTS.  All contributing project authors may | 
| 8  *  be found in the AUTHORS file in the root of the source tree. | 8  *  be found in the AUTHORS file in the root of the source tree. | 
| 9  */ | 9  */ | 
| 10 | 10 | 
| 11 #include <math.h> | 11 #include <math.h> | 
| 12 #include <stdio.h> | 12 #include <stdio.h> | 
| 13 #include <string.h> | 13 #include <string.h> | 
| 14 #ifdef WEBRTC_ANDROID | 14 #ifdef WEBRTC_ANDROID | 
| 15 #include <sys/stat.h> | 15 #include <sys/stat.h> | 
| 16 #endif | 16 #endif | 
| 17 | 17 | 
| 18 #include <algorithm> | 18 #include <algorithm> | 
| 19 #include <memory> | 19 #include <memory> | 
| 20 | 20 | 
| 21 #include "webrtc/base/format_macros.h" | 21 #include "webrtc/base/format_macros.h" | 
| 22 #include "webrtc/base/timeutils.h" | 22 #include "webrtc/base/timeutils.h" | 
| 23 #include "webrtc/common.h" |  | 
| 24 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 23 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 
|  | 24 #include "webrtc/modules/audio_processing/include/config.h" | 
| 25 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" | 25 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" | 
| 26 #include "webrtc/modules/audio_processing/test/test_utils.h" | 26 #include "webrtc/modules/audio_processing/test/test_utils.h" | 
| 27 #include "webrtc/modules/include/module_common_types.h" | 27 #include "webrtc/modules/include/module_common_types.h" | 
| 28 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" | 28 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" | 
| 29 #include "webrtc/test/testsupport/fileutils.h" | 29 #include "webrtc/test/testsupport/fileutils.h" | 
| 30 #include "webrtc/test/testsupport/perf_test.h" | 30 #include "webrtc/test/testsupport/perf_test.h" | 
| 31 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD | 31 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD | 
| 32 #include "gtest/gtest.h" | 32 #include "gtest/gtest.h" | 
| 33 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" | 33 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" | 
| 34 #else | 34 #else | 
| (...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1155 }  // namespace | 1155 }  // namespace | 
| 1156 }  // namespace webrtc | 1156 }  // namespace webrtc | 
| 1157 | 1157 | 
| 1158 int main(int argc, char* argv[]) { | 1158 int main(int argc, char* argv[]) { | 
| 1159   webrtc::void_main(argc, argv); | 1159   webrtc::void_main(argc, argv); | 
| 1160 | 1160 | 
| 1161   // Optional, but removes memory leak noise from Valgrind. | 1161   // Optional, but removes memory leak noise from Valgrind. | 
| 1162   google::protobuf::ShutdownProtobufLibrary(); | 1162   google::protobuf::ShutdownProtobufLibrary(); | 
| 1163   return 0; | 1163   return 0; | 
| 1164 } | 1164 } | 
| OLD | NEW | 
|---|