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

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: unneeded DCHECK removed 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/agc2/digital_gain_applier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/digital_gain_applier.cc",
112 "agc2/digital_gain_applier.h",
113 "agc2/gain_controller2.cc",
114 "agc2/gain_controller2.h",
111 "audio_buffer.cc", 115 "audio_buffer.cc",
112 "audio_buffer.h", 116 "audio_buffer.h",
113 "audio_processing_impl.cc", 117 "audio_processing_impl.cc",
114 "audio_processing_impl.h", 118 "audio_processing_impl.h",
115 "beamformer/array_util.cc", 119 "beamformer/array_util.cc",
116 "beamformer/array_util.h", 120 "beamformer/array_util.h",
117 "beamformer/complex_matrix.h", 121 "beamformer/complex_matrix.h",
118 "beamformer/covariance_matrix_generator.cc", 122 "beamformer/covariance_matrix_generator.cc",
119 "beamformer/covariance_matrix_generator.h", 123 "beamformer/covariance_matrix_generator.h",
120 "beamformer/matrix.h", 124 "beamformer/matrix.h",
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 "aec3/render_delay_buffer_unittest.cc", 609 "aec3/render_delay_buffer_unittest.cc",
606 "aec3/render_delay_controller_metrics_unittest.cc", 610 "aec3/render_delay_controller_metrics_unittest.cc",
607 "aec3/render_delay_controller_unittest.cc", 611 "aec3/render_delay_controller_unittest.cc",
608 "aec3/render_signal_analyzer_unittest.cc", 612 "aec3/render_signal_analyzer_unittest.cc",
609 "aec3/residual_echo_estimator_unittest.cc", 613 "aec3/residual_echo_estimator_unittest.cc",
610 "aec3/shadow_filter_update_gain_unittest.cc", 614 "aec3/shadow_filter_update_gain_unittest.cc",
611 "aec3/subtractor_unittest.cc", 615 "aec3/subtractor_unittest.cc",
612 "aec3/suppression_filter_unittest.cc", 616 "aec3/suppression_filter_unittest.cc",
613 "aec3/suppression_gain_unittest.cc", 617 "aec3/suppression_gain_unittest.cc",
614 "aec3/vector_math_unittest.cc", 618 "aec3/vector_math_unittest.cc",
619 "agc2/gain_controller2_unittest.cc",
615 "audio_processing_impl_locking_unittest.cc", 620 "audio_processing_impl_locking_unittest.cc",
616 "audio_processing_impl_unittest.cc", 621 "audio_processing_impl_unittest.cc",
617 "audio_processing_unittest.cc", 622 "audio_processing_unittest.cc",
618 "beamformer/nonlinear_beamformer_unittest.cc", 623 "beamformer/nonlinear_beamformer_unittest.cc",
619 "echo_cancellation_bit_exact_unittest.cc", 624 "echo_cancellation_bit_exact_unittest.cc",
620 "echo_control_mobile_unittest.cc", 625 "echo_control_mobile_unittest.cc",
621 "echo_detector/circular_buffer_unittest.cc", 626 "echo_detector/circular_buffer_unittest.cc",
622 "echo_detector/mean_variance_estimator_unittest.cc", 627 "echo_detector/mean_variance_estimator_unittest.cc",
623 "echo_detector/moving_max_unittest.cc", 628 "echo_detector/moving_max_unittest.cc",
624 "echo_detector/normalized_covariance_estimator_unittest.cc", 629 "echo_detector/normalized_covariance_estimator_unittest.cc",
(...skipping 216 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/digital_gain_applier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698