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

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

Issue 2995043002: AGC2 dummy module: fixed gain param, APM integration, audioproc_f adaptation (Closed)
Patch Set: Created 3 years, 4 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/digital_gain_applier.cc",
112 "agc2/digital_gain_applier.h",
113 "agc2/gain_controller2.cc", 111 "agc2/gain_controller2.cc",
114 "agc2/gain_controller2.h", 112 "agc2/gain_controller2.h",
115 "audio_buffer.cc", 113 "audio_buffer.cc",
116 "audio_buffer.h", 114 "audio_buffer.h",
117 "audio_processing_impl.cc", 115 "audio_processing_impl.cc",
118 "audio_processing_impl.h", 116 "audio_processing_impl.h",
119 "beamformer/array_util.cc", 117 "beamformer/array_util.cc",
120 "beamformer/array_util.h", 118 "beamformer/array_util.h",
121 "beamformer/complex_matrix.h", 119 "beamformer/complex_matrix.h",
122 "beamformer/covariance_matrix_generator.cc", 120 "beamformer/covariance_matrix_generator.cc",
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 863
866 deps = [ 864 deps = [
867 ":audioproc_debug_proto", 865 ":audioproc_debug_proto",
868 "../..:webrtc_common", 866 "../..:webrtc_common",
869 "../../rtc_base:protobuf_utils", 867 "../../rtc_base:protobuf_utils",
870 "../../rtc_base:rtc_base_approved", 868 "../../rtc_base:rtc_base_approved",
871 ] 869 ]
872 } 870 }
873 } 871 }
874 } 872 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698