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

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2848593002: AGC2 as a new APM sub-module operating with hard-coded gain. (Closed)
Patch Set: AGC2 in APM with enabled flag Created 3 years, 7 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 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "aecm/echo_control_mobile.h", 101 "aecm/echo_control_mobile.h",
102 "agc/agc.cc", 102 "agc/agc.cc",
103 "agc/agc.h", 103 "agc/agc.h",
104 "agc/agc_manager_direct.cc", 104 "agc/agc_manager_direct.cc",
105 "agc/agc_manager_direct.h", 105 "agc/agc_manager_direct.h",
106 "agc/gain_map_internal.h", 106 "agc/gain_map_internal.h",
107 "agc/loudness_histogram.cc", 107 "agc/loudness_histogram.cc",
108 "agc/loudness_histogram.h", 108 "agc/loudness_histogram.h",
109 "agc/utility.cc", 109 "agc/utility.cc",
110 "agc/utility.h", 110 "agc/utility.h",
111 "agc2/agc2.h",
112 "agc2/agc2_impl.cc",
113 "agc2/agc2_impl.h",
aleloi 2017/05/02 10:11:53 I wonder how difficult it would be to write new su
AleBzk 2017/05/02 11:31:54 Personally, I like your idea a lot. I'll do this c
aleloi 2017/05/18 15:01:17 Did you decide to keep everythnig in ':audio_proce
peah-webrtc 2017/05/18 20:17:52 I think the build target idea sounds great as well
AleBzk 2017/05/19 13:15:41 Let's make another CL for this.
111 "audio_buffer.cc", 114 "audio_buffer.cc",
112 "audio_buffer.h", 115 "audio_buffer.h",
113 "audio_processing_impl.cc", 116 "audio_processing_impl.cc",
114 "audio_processing_impl.h", 117 "audio_processing_impl.h",
115 "beamformer/array_util.cc", 118 "beamformer/array_util.cc",
116 "beamformer/array_util.h", 119 "beamformer/array_util.h",
117 "beamformer/complex_matrix.h", 120 "beamformer/complex_matrix.h",
118 "beamformer/covariance_matrix_generator.cc", 121 "beamformer/covariance_matrix_generator.cc",
119 "beamformer/covariance_matrix_generator.h", 122 "beamformer/covariance_matrix_generator.h",
120 "beamformer/matrix.h", 123 "beamformer/matrix.h",
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 # cover (which would be confusing to read and hard to maintain). 495 # cover (which would be confusing to read and hard to maintain).
493 if (!is_android && !is_ios) { 496 if (!is_android && !is_ios) {
494 visibility = [ "//webrtc/modules:modules_unittests" ] 497 visibility = [ "//webrtc/modules:modules_unittests" ]
495 } 498 }
496 sources = [ 499 sources = [
497 "aec/echo_cancellation_unittest.cc", 500 "aec/echo_cancellation_unittest.cc",
498 "aec/system_delay_unittest.cc", 501 "aec/system_delay_unittest.cc",
499 "agc/agc_manager_direct_unittest.cc", 502 "agc/agc_manager_direct_unittest.cc",
500 "agc/loudness_histogram_unittest.cc", 503 "agc/loudness_histogram_unittest.cc",
501 "agc/mock_agc.h", 504 "agc/mock_agc.h",
505 "agc2/agc2_mock.h",
aleloi 2017/05/02 10:11:53 Same for tests. New module unittests could have a
AleBzk 2017/05/02 11:31:54 Yup.
506 "agc2/agc2_unittest.cc",
502 "audio_buffer_unittest.cc", 507 "audio_buffer_unittest.cc",
503 "beamformer/array_util_unittest.cc", 508 "beamformer/array_util_unittest.cc",
504 "beamformer/complex_matrix_unittest.cc", 509 "beamformer/complex_matrix_unittest.cc",
505 "beamformer/covariance_matrix_generator_unittest.cc", 510 "beamformer/covariance_matrix_generator_unittest.cc",
506 "beamformer/matrix_unittest.cc", 511 "beamformer/matrix_unittest.cc",
507 "beamformer/mock_nonlinear_beamformer.h", 512 "beamformer/mock_nonlinear_beamformer.h",
508 "config_unittest.cc", 513 "config_unittest.cc",
509 "echo_cancellation_impl_unittest.cc", 514 "echo_cancellation_impl_unittest.cc",
510 "splitting_filter_unittest.cc", 515 "splitting_filter_unittest.cc",
511 "transient/dyadic_decimator_unittest.cc", 516 "transient/dyadic_decimator_unittest.cc",
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 846
842 deps = [ 847 deps = [
843 ":audioproc_debug_proto", 848 ":audioproc_debug_proto",
844 "../..:webrtc_common", 849 "../..:webrtc_common",
845 "../../base:protobuf_utils", 850 "../../base:protobuf_utils",
846 "../../base:rtc_base_approved", 851 "../../base:rtc_base_approved",
847 ] 852 ]
848 } 853 }
849 } 854 }
850 } 855 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/agc2/agc2.h » ('j') | webrtc/modules/audio_processing/agc2/agc2.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698