| 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 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "webrtc/modules/include/module_common_types.h" | 26 #include "webrtc/modules/include/module_common_types.h" |
| 27 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" | 27 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" |
| 28 #include "webrtc/system_wrappers/include/tick_util.h" | 28 #include "webrtc/system_wrappers/include/tick_util.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 |
| 35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
| 36 #include "webrtc/audio_processing/debug.pb.h" | 36 #include "webrtc/modules/audio_processing/debug.pb.h" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 namespace webrtc { | 39 namespace webrtc { |
| 40 | 40 |
| 41 using webrtc::audioproc::Event; | 41 using webrtc::audioproc::Event; |
| 42 using webrtc::audioproc::Init; | 42 using webrtc::audioproc::Init; |
| 43 using webrtc::audioproc::ReverseStream; | 43 using webrtc::audioproc::ReverseStream; |
| 44 using webrtc::audioproc::Stream; | 44 using webrtc::audioproc::Stream; |
| 45 | 45 |
| 46 namespace { | 46 namespace { |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 } // namespace | 1146 } // namespace |
| 1147 } // namespace webrtc | 1147 } // namespace webrtc |
| 1148 | 1148 |
| 1149 int main(int argc, char* argv[]) { | 1149 int main(int argc, char* argv[]) { |
| 1150 webrtc::void_main(argc, argv); | 1150 webrtc::void_main(argc, argv); |
| 1151 | 1151 |
| 1152 // Optional, but removes memory leak noise from Valgrind. | 1152 // Optional, but removes memory leak noise from Valgrind. |
| 1153 google::protobuf::ShutdownProtobufLibrary(); | 1153 google::protobuf::ShutdownProtobufLibrary(); |
| 1154 return 0; | 1154 return 0; |
| 1155 } | 1155 } |
| OLD | NEW |