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

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

Issue 2337083002: Reland of added functionality for specifying the initial signal level to use for the gain estimation (Closed)
Patch Set: Fixed type conversion error Created 4 years, 2 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/audio_processing.cc » ('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 28 matching lines...) Expand all
39 "agc/legacy/analog_agc.h", 39 "agc/legacy/analog_agc.h",
40 "agc/legacy/digital_agc.c", 40 "agc/legacy/digital_agc.c",
41 "agc/legacy/digital_agc.h", 41 "agc/legacy/digital_agc.h",
42 "agc/legacy/gain_control.h", 42 "agc/legacy/gain_control.h",
43 "agc/loudness_histogram.cc", 43 "agc/loudness_histogram.cc",
44 "agc/loudness_histogram.h", 44 "agc/loudness_histogram.h",
45 "agc/utility.cc", 45 "agc/utility.cc",
46 "agc/utility.h", 46 "agc/utility.h",
47 "audio_buffer.cc", 47 "audio_buffer.cc",
48 "audio_buffer.h", 48 "audio_buffer.h",
49 "audio_processing.cc",
50 "audio_processing_impl.cc", 49 "audio_processing_impl.cc",
51 "audio_processing_impl.h", 50 "audio_processing_impl.h",
52 "beamformer/array_util.cc", 51 "beamformer/array_util.cc",
53 "beamformer/array_util.h", 52 "beamformer/array_util.h",
54 "beamformer/complex_matrix.h", 53 "beamformer/complex_matrix.h",
55 "beamformer/covariance_matrix_generator.cc", 54 "beamformer/covariance_matrix_generator.cc",
56 "beamformer/covariance_matrix_generator.h", 55 "beamformer/covariance_matrix_generator.h",
57 "beamformer/matrix.h", 56 "beamformer/matrix.h",
58 "beamformer/nonlinear_beamformer.cc", 57 "beamformer/nonlinear_beamformer.cc",
59 "beamformer/nonlinear_beamformer.h", 58 "beamformer/nonlinear_beamformer.h",
60 "common.h", 59 "common.h",
61 "echo_cancellation_impl.cc", 60 "echo_cancellation_impl.cc",
62 "echo_cancellation_impl.h", 61 "echo_cancellation_impl.h",
63 "echo_control_mobile_impl.cc", 62 "echo_control_mobile_impl.cc",
64 "echo_control_mobile_impl.h", 63 "echo_control_mobile_impl.h",
65 "gain_control_for_experimental_agc.cc", 64 "gain_control_for_experimental_agc.cc",
66 "gain_control_for_experimental_agc.h", 65 "gain_control_for_experimental_agc.h",
67 "gain_control_impl.cc", 66 "gain_control_impl.cc",
68 "gain_control_impl.h", 67 "gain_control_impl.h",
69 "high_pass_filter_impl.cc", 68 "high_pass_filter_impl.cc",
70 "high_pass_filter_impl.h", 69 "high_pass_filter_impl.h",
70 "include/audio_processing.cc",
71 "include/audio_processing.h", 71 "include/audio_processing.h",
72 "include/config.cc", 72 "include/config.cc",
73 "include/config.h", 73 "include/config.h",
74 "level_controller/biquad_filter.cc", 74 "level_controller/biquad_filter.cc",
75 "level_controller/biquad_filter.h", 75 "level_controller/biquad_filter.h",
76 "level_controller/down_sampler.cc", 76 "level_controller/down_sampler.cc",
77 "level_controller/down_sampler.h", 77 "level_controller/down_sampler.h",
78 "level_controller/gain_applier.cc", 78 "level_controller/gain_applier.cc",
79 "level_controller/gain_applier.h", 79 "level_controller/gain_applier.h",
80 "level_controller/gain_selector.cc", 80 "level_controller/gain_selector.cc",
81 "level_controller/gain_selector.h", 81 "level_controller/gain_selector.h",
82 "level_controller/lc_constants.h",
83 "level_controller/level_controller.cc", 82 "level_controller/level_controller.cc",
84 "level_controller/level_controller.h", 83 "level_controller/level_controller.h",
84 "level_controller/level_controller_constants.h",
85 "level_controller/noise_level_estimator.cc", 85 "level_controller/noise_level_estimator.cc",
86 "level_controller/noise_level_estimator.h", 86 "level_controller/noise_level_estimator.h",
87 "level_controller/noise_spectrum_estimator.cc", 87 "level_controller/noise_spectrum_estimator.cc",
88 "level_controller/noise_spectrum_estimator.h", 88 "level_controller/noise_spectrum_estimator.h",
89 "level_controller/peak_level_estimator.cc", 89 "level_controller/peak_level_estimator.cc",
90 "level_controller/peak_level_estimator.h", 90 "level_controller/peak_level_estimator.h",
91 "level_controller/saturating_gain_estimator.cc", 91 "level_controller/saturating_gain_estimator.cc",
92 "level_controller/saturating_gain_estimator.h", 92 "level_controller/saturating_gain_estimator.h",
93 "level_controller/signal_classifier.cc", 93 "level_controller/signal_classifier.cc",
94 "level_controller/signal_classifier.h", 94 "level_controller/signal_classifier.h",
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 "test/protobuf_utils.cc", 461 "test/protobuf_utils.cc",
462 "test/protobuf_utils.h", 462 "test/protobuf_utils.h",
463 ] 463 ]
464 464
465 deps = [ 465 deps = [
466 ":audioproc_debug_proto", 466 ":audioproc_debug_proto",
467 ] 467 ]
468 } 468 }
469 } 469 }
470 } 470 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698