Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: webrtc/modules/audio_processing/test/process_test.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 19
20 #include "webrtc/base/scoped_ptr.h" 20 #include "webrtc/base/scoped_ptr.h"
21 #include "webrtc/common.h" 21 #include "webrtc/common.h"
22 #include "webrtc/modules/audio_processing/include/audio_processing.h" 22 #include "webrtc/modules/audio_processing/include/audio_processing.h"
23 #include "webrtc/modules/audio_processing/test/protobuf_utils.h" 23 #include "webrtc/modules/audio_processing/test/protobuf_utils.h"
24 #include "webrtc/modules/audio_processing/test/test_utils.h" 24 #include "webrtc/modules/audio_processing/test/test_utils.h"
25 #include "webrtc/modules/interface/module_common_types.h" 25 #include "webrtc/modules/interface/module_common_types.h"
26 #include "webrtc/system_wrappers/interface/cpu_features_wrapper.h" 26 #include "webrtc/system_wrappers/include/cpu_features_wrapper.h"
27 #include "webrtc/system_wrappers/interface/tick_util.h" 27 #include "webrtc/system_wrappers/include/tick_util.h"
28 #include "webrtc/test/testsupport/fileutils.h" 28 #include "webrtc/test/testsupport/fileutils.h"
29 #include "webrtc/test/testsupport/perf_test.h" 29 #include "webrtc/test/testsupport/perf_test.h"
30 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 30 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
31 #include "gtest/gtest.h" 31 #include "gtest/gtest.h"
32 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" 32 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h"
33 #else 33 #else
34 #include "testing/gtest/include/gtest/gtest.h" 34 #include "testing/gtest/include/gtest/gtest.h"
35 #include "webrtc/audio_processing/debug.pb.h" 35 #include "webrtc/audio_processing/debug.pb.h"
36 #endif 36 #endif
37 37
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 } // namespace 1139 } // namespace
1140 } // namespace webrtc 1140 } // namespace webrtc
1141 1141
1142 int main(int argc, char* argv[]) { 1142 int main(int argc, char* argv[]) {
1143 webrtc::void_main(argc, argv); 1143 webrtc::void_main(argc, argv);
1144 1144
1145 // Optional, but removes memory leak noise from Valgrind. 1145 // Optional, but removes memory leak noise from Valgrind.
1146 google::protobuf::ShutdownProtobufLibrary(); 1146 google::protobuf::ShutdownProtobufLibrary();
1147 return 0; 1147 return 0;
1148 } 1148 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/test/audioproc_float.cc ('k') | webrtc/modules/audio_processing/three_band_filter_bank.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698