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

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

Issue 2629563003: Added a new echo likelihood stat that reports the maximum value from a previous time period. (Closed)
Patch Set: Small bugfix. Created 3 years, 11 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "beamformer/nonlinear_beamformer.h", 64 "beamformer/nonlinear_beamformer.h",
65 "common.h", 65 "common.h",
66 "echo_cancellation_impl.cc", 66 "echo_cancellation_impl.cc",
67 "echo_cancellation_impl.h", 67 "echo_cancellation_impl.h",
68 "echo_control_mobile_impl.cc", 68 "echo_control_mobile_impl.cc",
69 "echo_control_mobile_impl.h", 69 "echo_control_mobile_impl.h",
70 "echo_detector/circular_buffer.cc", 70 "echo_detector/circular_buffer.cc",
71 "echo_detector/circular_buffer.h", 71 "echo_detector/circular_buffer.h",
72 "echo_detector/mean_variance_estimator.cc", 72 "echo_detector/mean_variance_estimator.cc",
73 "echo_detector/mean_variance_estimator.h", 73 "echo_detector/mean_variance_estimator.h",
74 "echo_detector/moving_max.cc",
75 "echo_detector/moving_max.h",
74 "echo_detector/normalized_covariance_estimator.cc", 76 "echo_detector/normalized_covariance_estimator.cc",
75 "echo_detector/normalized_covariance_estimator.h", 77 "echo_detector/normalized_covariance_estimator.h",
76 "gain_control_for_experimental_agc.cc", 78 "gain_control_for_experimental_agc.cc",
77 "gain_control_for_experimental_agc.h", 79 "gain_control_for_experimental_agc.h",
78 "gain_control_impl.cc", 80 "gain_control_impl.cc",
79 "gain_control_impl.h", 81 "gain_control_impl.h",
80 "include/audio_processing.cc", 82 "include/audio_processing.cc",
81 "include/audio_processing.h", 83 "include/audio_processing.h",
82 "include/config.cc", 84 "include/config.cc",
83 "include/config.h", 85 "include/config.h",
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 ] 590 ]
589 591
590 deps = [ 592 deps = [
591 ":audioproc_debug_proto", 593 ":audioproc_debug_proto",
592 "../..:webrtc_common", 594 "../..:webrtc_common",
593 "../../base:rtc_base_approved", 595 "../../base:rtc_base_approved",
594 ] 596 ]
595 } 597 }
596 } 598 }
597 } 599 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698