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

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

Issue 2415403002: Introduced the new parameter setting scheme for activating the high-pass filter in APM (Closed)
Patch Set: Changes in response to reviewer comments Created 4 years, 1 month 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "beamformer/nonlinear_beamformer.h", 58 "beamformer/nonlinear_beamformer.h",
59 "common.h", 59 "common.h",
60 "echo_cancellation_impl.cc", 60 "echo_cancellation_impl.cc",
61 "echo_cancellation_impl.h", 61 "echo_cancellation_impl.h",
62 "echo_control_mobile_impl.cc", 62 "echo_control_mobile_impl.cc",
63 "echo_control_mobile_impl.h", 63 "echo_control_mobile_impl.h",
64 "gain_control_for_experimental_agc.cc", 64 "gain_control_for_experimental_agc.cc",
65 "gain_control_for_experimental_agc.h", 65 "gain_control_for_experimental_agc.h",
66 "gain_control_impl.cc", 66 "gain_control_impl.cc",
67 "gain_control_impl.h", 67 "gain_control_impl.h",
68 "high_pass_filter_impl.cc",
69 "high_pass_filter_impl.h",
70 "include/audio_processing.cc", 68 "include/audio_processing.cc",
71 "include/audio_processing.h", 69 "include/audio_processing.h",
72 "include/config.cc", 70 "include/config.cc",
73 "include/config.h", 71 "include/config.h",
74 "level_controller/biquad_filter.cc", 72 "level_controller/biquad_filter.cc",
75 "level_controller/biquad_filter.h", 73 "level_controller/biquad_filter.h",
76 "level_controller/down_sampler.cc", 74 "level_controller/down_sampler.cc",
77 "level_controller/down_sampler.h", 75 "level_controller/down_sampler.h",
78 "level_controller/gain_applier.cc", 76 "level_controller/gain_applier.cc",
79 "level_controller/gain_applier.h", 77 "level_controller/gain_applier.h",
80 "level_controller/gain_selector.cc", 78 "level_controller/gain_selector.cc",
81 "level_controller/gain_selector.h", 79 "level_controller/gain_selector.h",
82 "level_controller/level_controller.cc", 80 "level_controller/level_controller.cc",
83 "level_controller/level_controller.h", 81 "level_controller/level_controller.h",
84 "level_controller/level_controller_constants.h", 82 "level_controller/level_controller_constants.h",
85 "level_controller/noise_level_estimator.cc", 83 "level_controller/noise_level_estimator.cc",
86 "level_controller/noise_level_estimator.h", 84 "level_controller/noise_level_estimator.h",
87 "level_controller/noise_spectrum_estimator.cc", 85 "level_controller/noise_spectrum_estimator.cc",
88 "level_controller/noise_spectrum_estimator.h", 86 "level_controller/noise_spectrum_estimator.h",
89 "level_controller/peak_level_estimator.cc", 87 "level_controller/peak_level_estimator.cc",
90 "level_controller/peak_level_estimator.h", 88 "level_controller/peak_level_estimator.h",
91 "level_controller/saturating_gain_estimator.cc", 89 "level_controller/saturating_gain_estimator.cc",
92 "level_controller/saturating_gain_estimator.h", 90 "level_controller/saturating_gain_estimator.h",
93 "level_controller/signal_classifier.cc", 91 "level_controller/signal_classifier.cc",
94 "level_controller/signal_classifier.h", 92 "level_controller/signal_classifier.h",
95 "level_estimator_impl.cc", 93 "level_estimator_impl.cc",
96 "level_estimator_impl.h", 94 "level_estimator_impl.h",
97 "logging/apm_data_dumper.cc", 95 "logging/apm_data_dumper.cc",
98 "logging/apm_data_dumper.h", 96 "logging/apm_data_dumper.h",
97 "low_cut_filter.cc",
kjellander_webrtc 2016/10/28 12:40:29 where are these files? did you forget to add them?
98 "low_cut_filter.h",
99 "noise_suppression_impl.cc", 99 "noise_suppression_impl.cc",
100 "noise_suppression_impl.h", 100 "noise_suppression_impl.h",
101 "render_queue_item_verifier.h", 101 "render_queue_item_verifier.h",
102 "rms_level.cc", 102 "rms_level.cc",
103 "rms_level.h", 103 "rms_level.h",
104 "splitting_filter.cc", 104 "splitting_filter.cc",
105 "splitting_filter.h", 105 "splitting_filter.h",
106 "three_band_filter_bank.cc", 106 "three_band_filter_bank.cc",
107 "three_band_filter_bank.h", 107 "three_band_filter_bank.h",
108 "transient/common.h", 108 "transient/common.h",
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "test/protobuf_utils.cc", 442 "test/protobuf_utils.cc",
443 "test/protobuf_utils.h", 443 "test/protobuf_utils.h",
444 ] 444 ]
445 445
446 deps = [ 446 deps = [
447 ":audioproc_debug_proto", 447 ":audioproc_debug_proto",
448 ] 448 ]
449 } 449 }
450 } 450 }
451 } 451 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698