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

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

Issue 2782423003: Major updates to the echo removal functionality in AEC3 (Closed)
Patch Set: Added initialization of uninitialized vector Created 3 years, 8 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/aec3/adaptive_fir_filter.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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "aec3/frame_blocker.cc", 66 "aec3/frame_blocker.cc",
67 "aec3/frame_blocker.h", 67 "aec3/frame_blocker.h",
68 "aec3/main_filter_update_gain.cc", 68 "aec3/main_filter_update_gain.cc",
69 "aec3/main_filter_update_gain.h", 69 "aec3/main_filter_update_gain.h",
70 "aec3/matched_filter.cc", 70 "aec3/matched_filter.cc",
71 "aec3/matched_filter.h", 71 "aec3/matched_filter.h",
72 "aec3/matched_filter_lag_aggregator.cc", 72 "aec3/matched_filter_lag_aggregator.cc",
73 "aec3/matched_filter_lag_aggregator.h", 73 "aec3/matched_filter_lag_aggregator.h",
74 "aec3/output_selector.cc", 74 "aec3/output_selector.cc",
75 "aec3/output_selector.h", 75 "aec3/output_selector.h",
76 "aec3/power_echo_model.cc",
77 "aec3/power_echo_model.h",
78 "aec3/render_buffer.cc", 76 "aec3/render_buffer.cc",
79 "aec3/render_buffer.h", 77 "aec3/render_buffer.h",
80 "aec3/render_delay_buffer.cc", 78 "aec3/render_delay_buffer.cc",
81 "aec3/render_delay_buffer.h", 79 "aec3/render_delay_buffer.h",
82 "aec3/render_delay_controller.cc", 80 "aec3/render_delay_controller.cc",
83 "aec3/render_delay_controller.h", 81 "aec3/render_delay_controller.h",
84 "aec3/render_delay_controller_metrics.cc", 82 "aec3/render_delay_controller_metrics.cc",
85 "aec3/render_delay_controller_metrics.h", 83 "aec3/render_delay_controller_metrics.h",
86 "aec3/render_signal_analyzer.cc", 84 "aec3/render_signal_analyzer.cc",
87 "aec3/render_signal_analyzer.h", 85 "aec3/render_signal_analyzer.h",
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 "aec3/echo_remover_metrics_unittest.cc", 582 "aec3/echo_remover_metrics_unittest.cc",
585 "aec3/echo_remover_unittest.cc", 583 "aec3/echo_remover_unittest.cc",
586 "aec3/erl_estimator_unittest.cc", 584 "aec3/erl_estimator_unittest.cc",
587 "aec3/erle_estimator_unittest.cc", 585 "aec3/erle_estimator_unittest.cc",
588 "aec3/fft_data_unittest.cc", 586 "aec3/fft_data_unittest.cc",
589 "aec3/frame_blocker_unittest.cc", 587 "aec3/frame_blocker_unittest.cc",
590 "aec3/main_filter_update_gain_unittest.cc", 588 "aec3/main_filter_update_gain_unittest.cc",
591 "aec3/matched_filter_lag_aggregator_unittest.cc", 589 "aec3/matched_filter_lag_aggregator_unittest.cc",
592 "aec3/matched_filter_unittest.cc", 590 "aec3/matched_filter_unittest.cc",
593 "aec3/output_selector_unittest.cc", 591 "aec3/output_selector_unittest.cc",
594 "aec3/power_echo_model_unittest.cc",
595 "aec3/render_buffer_unittest.cc", 592 "aec3/render_buffer_unittest.cc",
596 "aec3/render_delay_buffer_unittest.cc", 593 "aec3/render_delay_buffer_unittest.cc",
597 "aec3/render_delay_controller_metrics_unittest.cc", 594 "aec3/render_delay_controller_metrics_unittest.cc",
598 "aec3/render_delay_controller_unittest.cc", 595 "aec3/render_delay_controller_unittest.cc",
599 "aec3/render_signal_analyzer_unittest.cc", 596 "aec3/render_signal_analyzer_unittest.cc",
600 "aec3/residual_echo_estimator_unittest.cc", 597 "aec3/residual_echo_estimator_unittest.cc",
601 "aec3/shadow_filter_update_gain_unittest.cc", 598 "aec3/shadow_filter_update_gain_unittest.cc",
602 "aec3/subtractor_unittest.cc", 599 "aec3/subtractor_unittest.cc",
603 "aec3/suppression_filter_unittest.cc", 600 "aec3/suppression_filter_unittest.cc",
604 "aec3/suppression_gain_unittest.cc", 601 "aec3/suppression_gain_unittest.cc",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 ] 814 ]
818 815
819 deps = [ 816 deps = [
820 ":audioproc_debug_proto", 817 ":audioproc_debug_proto",
821 "../..:webrtc_common", 818 "../..:webrtc_common",
822 "../../base:rtc_base_approved", 819 "../../base:rtc_base_approved",
823 ] 820 ]
824 } 821 }
825 } 822 }
826 } 823 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698