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

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
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/audio_processing/audio_processing_impl.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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "echo_detector/circular_buffer.cc", 64 "echo_detector/circular_buffer.cc",
65 "echo_detector/circular_buffer.h", 65 "echo_detector/circular_buffer.h",
66 "echo_detector/mean_variance_estimator.cc", 66 "echo_detector/mean_variance_estimator.cc",
67 "echo_detector/mean_variance_estimator.h", 67 "echo_detector/mean_variance_estimator.h",
68 "echo_detector/normalized_covariance_estimator.cc", 68 "echo_detector/normalized_covariance_estimator.cc",
69 "echo_detector/normalized_covariance_estimator.h", 69 "echo_detector/normalized_covariance_estimator.h",
70 "gain_control_for_experimental_agc.cc", 70 "gain_control_for_experimental_agc.cc",
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",
75 "high_pass_filter_impl.h",
76 "include/audio_processing.cc", 74 "include/audio_processing.cc",
77 "include/audio_processing.h", 75 "include/audio_processing.h",
78 "include/config.cc", 76 "include/config.cc",
79 "include/config.h", 77 "include/config.h",
80 "level_controller/biquad_filter.cc", 78 "level_controller/biquad_filter.cc",
81 "level_controller/biquad_filter.h", 79 "level_controller/biquad_filter.h",
82 "level_controller/down_sampler.cc", 80 "level_controller/down_sampler.cc",
83 "level_controller/down_sampler.h", 81 "level_controller/down_sampler.h",
84 "level_controller/gain_applier.cc", 82 "level_controller/gain_applier.cc",
85 "level_controller/gain_applier.h", 83 "level_controller/gain_applier.h",
86 "level_controller/gain_selector.cc", 84 "level_controller/gain_selector.cc",
87 "level_controller/gain_selector.h", 85 "level_controller/gain_selector.h",
88 "level_controller/level_controller.cc", 86 "level_controller/level_controller.cc",
89 "level_controller/level_controller.h", 87 "level_controller/level_controller.h",
90 "level_controller/level_controller_constants.h", 88 "level_controller/level_controller_constants.h",
91 "level_controller/noise_level_estimator.cc", 89 "level_controller/noise_level_estimator.cc",
92 "level_controller/noise_level_estimator.h", 90 "level_controller/noise_level_estimator.h",
93 "level_controller/noise_spectrum_estimator.cc", 91 "level_controller/noise_spectrum_estimator.cc",
94 "level_controller/noise_spectrum_estimator.h", 92 "level_controller/noise_spectrum_estimator.h",
95 "level_controller/peak_level_estimator.cc", 93 "level_controller/peak_level_estimator.cc",
96 "level_controller/peak_level_estimator.h", 94 "level_controller/peak_level_estimator.h",
97 "level_controller/saturating_gain_estimator.cc", 95 "level_controller/saturating_gain_estimator.cc",
98 "level_controller/saturating_gain_estimator.h", 96 "level_controller/saturating_gain_estimator.h",
99 "level_controller/signal_classifier.cc", 97 "level_controller/signal_classifier.cc",
100 "level_controller/signal_classifier.h", 98 "level_controller/signal_classifier.h",
101 "level_estimator_impl.cc", 99 "level_estimator_impl.cc",
102 "level_estimator_impl.h", 100 "level_estimator_impl.h",
103 "logging/apm_data_dumper.cc", 101 "logging/apm_data_dumper.cc",
104 "logging/apm_data_dumper.h", 102 "logging/apm_data_dumper.h",
103 "low_cut_filter.cc",
104 "low_cut_filter.h",
105 "noise_suppression_impl.cc", 105 "noise_suppression_impl.cc",
106 "noise_suppression_impl.h", 106 "noise_suppression_impl.h",
107 "render_queue_item_verifier.h", 107 "render_queue_item_verifier.h",
108 "residual_echo_detector.cc", 108 "residual_echo_detector.cc",
109 "residual_echo_detector.h", 109 "residual_echo_detector.h",
110 "rms_level.cc", 110 "rms_level.cc",
111 "rms_level.h", 111 "rms_level.h",
112 "splitting_filter.cc", 112 "splitting_filter.cc",
113 "splitting_filter.h", 113 "splitting_filter.h",
114 "three_band_filter_bank.cc", 114 "three_band_filter_bank.cc",
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 "test/protobuf_utils.cc", 470 "test/protobuf_utils.cc",
471 "test/protobuf_utils.h", 471 "test/protobuf_utils.h",
472 ] 472 ]
473 473
474 deps = [ 474 deps = [
475 ":audioproc_debug_proto", 475 ":audioproc_debug_proto",
476 ] 476 ]
477 } 477 }
478 } 478 }
479 } 479 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/audio_processing/audio_processing_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698