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

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: Created 4 years, 3 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 30 matching lines...) Expand all
41 "agc/legacy/analog_agc.h", 41 "agc/legacy/analog_agc.h",
42 "agc/legacy/digital_agc.c", 42 "agc/legacy/digital_agc.c",
43 "agc/legacy/digital_agc.h", 43 "agc/legacy/digital_agc.h",
44 "agc/legacy/gain_control.h", 44 "agc/legacy/gain_control.h",
45 "agc/loudness_histogram.cc", 45 "agc/loudness_histogram.cc",
46 "agc/loudness_histogram.h", 46 "agc/loudness_histogram.h",
47 "agc/utility.cc", 47 "agc/utility.cc",
48 "agc/utility.h", 48 "agc/utility.h",
49 "audio_buffer.cc", 49 "audio_buffer.cc",
50 "audio_buffer.h", 50 "audio_buffer.h",
51 "audio_processing.cc",
52 "audio_processing_impl.cc", 51 "audio_processing_impl.cc",
53 "audio_processing_impl.h", 52 "audio_processing_impl.h",
54 "beamformer/array_util.cc", 53 "beamformer/array_util.cc",
55 "beamformer/array_util.h", 54 "beamformer/array_util.h",
56 "beamformer/complex_matrix.h", 55 "beamformer/complex_matrix.h",
57 "beamformer/covariance_matrix_generator.cc", 56 "beamformer/covariance_matrix_generator.cc",
58 "beamformer/covariance_matrix_generator.h", 57 "beamformer/covariance_matrix_generator.h",
59 "beamformer/matrix.h", 58 "beamformer/matrix.h",
60 "beamformer/nonlinear_beamformer.cc", 59 "beamformer/nonlinear_beamformer.cc",
61 "beamformer/nonlinear_beamformer.h", 60 "beamformer/nonlinear_beamformer.h",
62 "common.h", 61 "common.h",
63 "echo_cancellation_impl.cc", 62 "echo_cancellation_impl.cc",
64 "echo_cancellation_impl.h", 63 "echo_cancellation_impl.h",
65 "echo_control_mobile_impl.cc", 64 "echo_control_mobile_impl.cc",
66 "echo_control_mobile_impl.h", 65 "echo_control_mobile_impl.h",
67 "gain_control_for_experimental_agc.cc", 66 "gain_control_for_experimental_agc.cc",
68 "gain_control_for_experimental_agc.h", 67 "gain_control_for_experimental_agc.h",
69 "gain_control_impl.cc", 68 "gain_control_impl.cc",
70 "gain_control_impl.h", 69 "gain_control_impl.h",
71 "high_pass_filter_impl.cc", 70 "high_pass_filter_impl.cc",
72 "high_pass_filter_impl.h", 71 "high_pass_filter_impl.h",
72 "include/audio_processing.cc",
73 "include/audio_processing.h", 73 "include/audio_processing.h",
74 "include/config.cc", 74 "include/config.cc",
75 "include/config.h", 75 "include/config.h",
76 "level_controller/biquad_filter.cc", 76 "level_controller/biquad_filter.cc",
77 "level_controller/biquad_filter.h", 77 "level_controller/biquad_filter.h",
78 "level_controller/down_sampler.cc", 78 "level_controller/down_sampler.cc",
79 "level_controller/down_sampler.h", 79 "level_controller/down_sampler.h",
80 "level_controller/gain_applier.cc", 80 "level_controller/gain_applier.cc",
81 "level_controller/gain_applier.h", 81 "level_controller/gain_applier.h",
82 "level_controller/gain_selector.cc", 82 "level_controller/gain_selector.cc",
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 "test/protobuf_utils.cc", 458 "test/protobuf_utils.cc",
459 "test/protobuf_utils.h", 459 "test/protobuf_utils.h",
460 ] 460 ]
461 461
462 deps = [ 462 deps = [
463 ":audioproc_debug_proto", 463 ":audioproc_debug_proto",
464 ] 464 ]
465 } 465 }
466 } 466 }
467 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698