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

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

Issue 2090583002: New module for the adaptive level controlling functionality in the audio processing module (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Temporarily deactivated the level controller until the CL with the proper tuning has been landed Created 4 years, 5 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "gain_control_for_experimental_agc.h", 71 "gain_control_for_experimental_agc.h",
72 "gain_control_impl.cc", 72 "gain_control_impl.cc",
73 "gain_control_impl.h", 73 "gain_control_impl.h",
74 "high_pass_filter_impl.cc", 74 "high_pass_filter_impl.cc",
75 "high_pass_filter_impl.h", 75 "high_pass_filter_impl.h",
76 "include/audio_processing.h", 76 "include/audio_processing.h",
77 "intelligibility/intelligibility_enhancer.cc", 77 "intelligibility/intelligibility_enhancer.cc",
78 "intelligibility/intelligibility_enhancer.h", 78 "intelligibility/intelligibility_enhancer.h",
79 "intelligibility/intelligibility_utils.cc", 79 "intelligibility/intelligibility_utils.cc",
80 "intelligibility/intelligibility_utils.h", 80 "intelligibility/intelligibility_utils.h",
81 "level_controller/biquad_filter.cc",
82 "level_controller/biquad_filter.h",
83 "level_controller/down_sampler.cc",
84 "level_controller/down_sampler.h",
85 "level_controller/gain_applier.cc",
86 "level_controller/gain_applier.h",
87 "level_controller/gain_selector.cc",
88 "level_controller/gain_selector.h",
89 "level_controller/lc_constants.h",
90 "level_controller/level_controller.cc",
91 "level_controller/level_controller.h",
92 "level_controller/noise_level_estimator.cc",
93 "level_controller/noise_level_estimator.h",
94 "level_controller/noise_spectrum_estimator.cc",
95 "level_controller/noise_spectrum_estimator.h",
96 "level_controller/peak_level_estimator.cc",
97 "level_controller/peak_level_estimator.h",
98 "level_controller/saturating_gain_estimator.cc",
99 "level_controller/saturating_gain_estimator.h",
100 "level_controller/signal_classifier.cc",
101 "level_controller/signal_classifier.h",
81 "level_estimator_impl.cc", 102 "level_estimator_impl.cc",
82 "level_estimator_impl.h", 103 "level_estimator_impl.h",
83 "logging/apm_data_dumper.cc", 104 "logging/apm_data_dumper.cc",
84 "logging/apm_data_dumper.h", 105 "logging/apm_data_dumper.h",
85 "noise_suppression_impl.cc", 106 "noise_suppression_impl.cc",
86 "noise_suppression_impl.h", 107 "noise_suppression_impl.h",
87 "render_queue_item_verifier.h", 108 "render_queue_item_verifier.h",
88 "rms_level.cc", 109 "rms_level.cc",
89 "rms_level.h", 110 "rms_level.h",
90 "splitting_filter.cc", 111 "splitting_filter.cc",
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 "test/protobuf_utils.cc", 351 "test/protobuf_utils.cc",
331 "test/protobuf_utils.h", 352 "test/protobuf_utils.h",
332 ] 353 ]
333 354
334 deps = [ 355 deps = [
335 ":audioproc_unittest_proto", 356 ":audioproc_unittest_proto",
336 ] 357 ]
337 } 358 }
338 } 359 }
339 } 360 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698