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

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

Issue 1673263002: Update path for audioproc_debug proto output. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix GN build and move the test proto as well Created 4 years, 10 months 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
(...skipping 16 matching lines...) Expand all
27 #include "webrtc/modules/audio_processing/test/test_utils.h" 27 #include "webrtc/modules/audio_processing/test/test_utils.h"
28 #include "webrtc/modules/include/module_common_types.h" 28 #include "webrtc/modules/include/module_common_types.h"
29 #include "webrtc/system_wrappers/include/event_wrapper.h" 29 #include "webrtc/system_wrappers/include/event_wrapper.h"
30 #include "webrtc/system_wrappers/include/trace.h" 30 #include "webrtc/system_wrappers/include/trace.h"
31 #include "webrtc/test/testsupport/fileutils.h" 31 #include "webrtc/test/testsupport/fileutils.h"
32 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 32 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
33 #include "gtest/gtest.h" 33 #include "gtest/gtest.h"
34 #include "external/webrtc/webrtc/modules/audio_processing/test/unittest.pb.h" 34 #include "external/webrtc/webrtc/modules/audio_processing/test/unittest.pb.h"
35 #else 35 #else
36 #include "testing/gtest/include/gtest/gtest.h" 36 #include "testing/gtest/include/gtest/gtest.h"
37 #include "webrtc/audio_processing/unittest.pb.h" 37 #include "webrtc/modules/audio_processing/unittest.pb.h"
38 #endif 38 #endif
39 39
40 namespace webrtc { 40 namespace webrtc {
41 namespace { 41 namespace {
42 42
43 // TODO(ekmeyerson): Switch to using StreamConfig and ProcessingConfig where 43 // TODO(ekmeyerson): Switch to using StreamConfig and ProcessingConfig where
44 // applicable. 44 // applicable.
45 45
46 // TODO(bjornv): This is not feasible until the functionality has been 46 // TODO(bjornv): This is not feasible until the functionality has been
47 // re-implemented; see comment at the bottom of this file. For now, the user has 47 // re-implemented; see comment at the bottom of this file. For now, the user has
(...skipping 2715 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 std::tr1::make_tuple(16000, 32000, 48000, 32000, 25, 35), 2763 std::tr1::make_tuple(16000, 32000, 48000, 32000, 25, 35),
2764 std::tr1::make_tuple(16000, 32000, 32000, 32000, 25, 0), 2764 std::tr1::make_tuple(16000, 32000, 32000, 32000, 25, 0),
2765 std::tr1::make_tuple(16000, 32000, 16000, 32000, 25, 20), 2765 std::tr1::make_tuple(16000, 32000, 16000, 32000, 25, 20),
2766 std::tr1::make_tuple(16000, 16000, 48000, 16000, 35, 20), 2766 std::tr1::make_tuple(16000, 16000, 48000, 16000, 35, 20),
2767 std::tr1::make_tuple(16000, 16000, 32000, 16000, 40, 20), 2767 std::tr1::make_tuple(16000, 16000, 32000, 16000, 40, 20),
2768 std::tr1::make_tuple(16000, 16000, 16000, 16000, 0, 0))); 2768 std::tr1::make_tuple(16000, 16000, 16000, 16000, 0, 0)));
2769 #endif 2769 #endif
2770 2770
2771 } // namespace 2771 } // namespace
2772 } // namespace webrtc 2772 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/test/audio_file_processor.h ('k') | webrtc/modules/audio_processing/test/debug_dump_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698