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

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

Issue 2405403003: Add empty residual echo detector. (Closed)
Patch Set: Moved responsibility for proper locking to APM. 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
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "beamformer/covariance_matrix_generator.cc", 54 "beamformer/covariance_matrix_generator.cc",
55 "beamformer/covariance_matrix_generator.h", 55 "beamformer/covariance_matrix_generator.h",
56 "beamformer/matrix.h", 56 "beamformer/matrix.h",
57 "beamformer/nonlinear_beamformer.cc", 57 "beamformer/nonlinear_beamformer.cc",
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 "echo_detector/echo_detector.cc",
65 "echo_detector/echo_detector.h",
64 "gain_control_for_experimental_agc.cc", 66 "gain_control_for_experimental_agc.cc",
65 "gain_control_for_experimental_agc.h", 67 "gain_control_for_experimental_agc.h",
66 "gain_control_impl.cc", 68 "gain_control_impl.cc",
67 "gain_control_impl.h", 69 "gain_control_impl.h",
68 "high_pass_filter_impl.cc", 70 "high_pass_filter_impl.cc",
69 "high_pass_filter_impl.h", 71 "high_pass_filter_impl.h",
70 "include/audio_processing.cc", 72 "include/audio_processing.cc",
71 "include/audio_processing.h", 73 "include/audio_processing.h",
72 "include/config.cc", 74 "include/config.cc",
73 "include/config.h", 75 "include/config.h",
(...skipping 18 matching lines...) Expand all
92 "level_controller/saturating_gain_estimator.h", 94 "level_controller/saturating_gain_estimator.h",
93 "level_controller/signal_classifier.cc", 95 "level_controller/signal_classifier.cc",
94 "level_controller/signal_classifier.h", 96 "level_controller/signal_classifier.h",
95 "level_estimator_impl.cc", 97 "level_estimator_impl.cc",
96 "level_estimator_impl.h", 98 "level_estimator_impl.h",
97 "logging/apm_data_dumper.cc", 99 "logging/apm_data_dumper.cc",
98 "logging/apm_data_dumper.h", 100 "logging/apm_data_dumper.h",
99 "noise_suppression_impl.cc", 101 "noise_suppression_impl.cc",
100 "noise_suppression_impl.h", 102 "noise_suppression_impl.h",
101 "render_queue_item_verifier.h", 103 "render_queue_item_verifier.h",
104 "residual_echo_detector.cc",
105 "residual_echo_detector.h",
102 "rms_level.cc", 106 "rms_level.cc",
103 "rms_level.h", 107 "rms_level.h",
104 "splitting_filter.cc", 108 "splitting_filter.cc",
105 "splitting_filter.h", 109 "splitting_filter.h",
106 "three_band_filter_bank.cc", 110 "three_band_filter_bank.cc",
107 "three_band_filter_bank.h", 111 "three_band_filter_bank.h",
108 "transient/common.h", 112 "transient/common.h",
109 "transient/daubechies_8_wavelet_coeffs.h", 113 "transient/daubechies_8_wavelet_coeffs.h",
110 "transient/dyadic_decimator.h", 114 "transient/dyadic_decimator.h",
111 "transient/moving_moments.cc", 115 "transient/moving_moments.cc",
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 "test/protobuf_utils.cc", 465 "test/protobuf_utils.cc",
462 "test/protobuf_utils.h", 466 "test/protobuf_utils.h",
463 ] 467 ]
464 468
465 deps = [ 469 deps = [
466 ":audioproc_debug_proto", 470 ":audioproc_debug_proto",
467 ] 471 ]
468 } 472 }
469 } 473 }
470 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698