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

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

Issue 2722453002: Adding metrics to AEC3 (Closed)
Patch Set: Created 3 years, 9 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 20 matching lines...) Expand all
31 "aec3/aec3_common.cc", 31 "aec3/aec3_common.cc",
32 "aec3/aec3_common.h", 32 "aec3/aec3_common.h",
33 "aec3/aec3_fft.cc", 33 "aec3/aec3_fft.cc",
34 "aec3/aec3_fft.h", 34 "aec3/aec3_fft.h",
35 "aec3/aec_state.cc", 35 "aec3/aec_state.cc",
36 "aec3/aec_state.h", 36 "aec3/aec_state.h",
37 "aec3/block_framer.cc", 37 "aec3/block_framer.cc",
38 "aec3/block_framer.h", 38 "aec3/block_framer.h",
39 "aec3/block_processor.cc", 39 "aec3/block_processor.cc",
40 "aec3/block_processor.h", 40 "aec3/block_processor.h",
41 "aec3/block_processor_metrics.cc",
42 "aec3/block_processor_metrics.h",
41 "aec3/cascaded_biquad_filter.cc", 43 "aec3/cascaded_biquad_filter.cc",
42 "aec3/cascaded_biquad_filter.h", 44 "aec3/cascaded_biquad_filter.h",
43 "aec3/comfort_noise_generator.cc", 45 "aec3/comfort_noise_generator.cc",
44 "aec3/comfort_noise_generator.h", 46 "aec3/comfort_noise_generator.h",
45 "aec3/decimator_by_4.cc", 47 "aec3/decimator_by_4.cc",
46 "aec3/decimator_by_4.h", 48 "aec3/decimator_by_4.h",
47 "aec3/echo_canceller3.cc", 49 "aec3/echo_canceller3.cc",
48 "aec3/echo_canceller3.h", 50 "aec3/echo_canceller3.h",
49 "aec3/echo_path_delay_estimator.cc", 51 "aec3/echo_path_delay_estimator.cc",
50 "aec3/echo_path_delay_estimator.h", 52 "aec3/echo_path_delay_estimator.h",
51 "aec3/echo_path_variability.cc", 53 "aec3/echo_path_variability.cc",
52 "aec3/echo_path_variability.h", 54 "aec3/echo_path_variability.h",
53 "aec3/echo_remover.cc", 55 "aec3/echo_remover.cc",
54 "aec3/echo_remover.h", 56 "aec3/echo_remover.h",
57 "aec3/echo_remover_metrics.cc",
58 "aec3/echo_remover_metrics.h",
55 "aec3/erl_estimator.cc", 59 "aec3/erl_estimator.cc",
56 "aec3/erl_estimator.h", 60 "aec3/erl_estimator.h",
57 "aec3/erle_estimator.cc", 61 "aec3/erle_estimator.cc",
58 "aec3/erle_estimator.h", 62 "aec3/erle_estimator.h",
59 "aec3/fft_buffer.cc", 63 "aec3/fft_buffer.cc",
60 "aec3/fft_buffer.h", 64 "aec3/fft_buffer.h",
61 "aec3/fft_data.h", 65 "aec3/fft_data.h",
62 "aec3/frame_blocker.cc", 66 "aec3/frame_blocker.cc",
63 "aec3/frame_blocker.h", 67 "aec3/frame_blocker.h",
64 "aec3/main_filter_update_gain.cc", 68 "aec3/main_filter_update_gain.cc",
65 "aec3/main_filter_update_gain.h", 69 "aec3/main_filter_update_gain.h",
66 "aec3/matched_filter.cc", 70 "aec3/matched_filter.cc",
67 "aec3/matched_filter.h", 71 "aec3/matched_filter.h",
68 "aec3/matched_filter_lag_aggregator.cc", 72 "aec3/matched_filter_lag_aggregator.cc",
69 "aec3/matched_filter_lag_aggregator.h", 73 "aec3/matched_filter_lag_aggregator.h",
70 "aec3/output_selector.cc", 74 "aec3/output_selector.cc",
71 "aec3/output_selector.h", 75 "aec3/output_selector.h",
72 "aec3/power_echo_model.cc", 76 "aec3/power_echo_model.cc",
73 "aec3/power_echo_model.h", 77 "aec3/power_echo_model.h",
74 "aec3/render_delay_buffer.cc", 78 "aec3/render_delay_buffer.cc",
75 "aec3/render_delay_buffer.h", 79 "aec3/render_delay_buffer.h",
76 "aec3/render_delay_controller.cc", 80 "aec3/render_delay_controller.cc",
77 "aec3/render_delay_controller.h", 81 "aec3/render_delay_controller.h",
82 "aec3/render_delay_controller_metrics.cc",
83 "aec3/render_delay_controller_metrics.h",
78 "aec3/render_signal_analyzer.cc", 84 "aec3/render_signal_analyzer.cc",
79 "aec3/render_signal_analyzer.h", 85 "aec3/render_signal_analyzer.h",
80 "aec3/residual_echo_estimator.cc", 86 "aec3/residual_echo_estimator.cc",
81 "aec3/residual_echo_estimator.h", 87 "aec3/residual_echo_estimator.h",
82 "aec3/shadow_filter_update_gain.cc", 88 "aec3/shadow_filter_update_gain.cc",
83 "aec3/shadow_filter_update_gain.h", 89 "aec3/shadow_filter_update_gain.h",
84 "aec3/subtractor.cc", 90 "aec3/subtractor.cc",
85 "aec3/subtractor.h", 91 "aec3/subtractor.h",
86 "aec3/subtractor_output.h", 92 "aec3/subtractor_output.h",
87 "aec3/suppression_filter.cc", 93 "aec3/suppression_filter.cc",
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 deps += [ 562 deps += [
557 ":audioproc_debug_proto", 563 ":audioproc_debug_proto",
558 ":audioproc_protobuf_utils", 564 ":audioproc_protobuf_utils",
559 ":audioproc_unittest_proto", 565 ":audioproc_unittest_proto",
560 ] 566 ]
561 sources += [ 567 sources += [
562 "aec3/adaptive_fir_filter_unittest.cc", 568 "aec3/adaptive_fir_filter_unittest.cc",
563 "aec3/aec3_fft_unittest.cc", 569 "aec3/aec3_fft_unittest.cc",
564 "aec3/aec_state_unittest.cc", 570 "aec3/aec_state_unittest.cc",
565 "aec3/block_framer_unittest.cc", 571 "aec3/block_framer_unittest.cc",
572 "aec3/block_processor_metrics_unittest.cc",
566 "aec3/block_processor_unittest.cc", 573 "aec3/block_processor_unittest.cc",
567 "aec3/cascaded_biquad_filter_unittest.cc", 574 "aec3/cascaded_biquad_filter_unittest.cc",
568 "aec3/comfort_noise_generator_unittest.cc", 575 "aec3/comfort_noise_generator_unittest.cc",
569 "aec3/decimator_by_4_unittest.cc", 576 "aec3/decimator_by_4_unittest.cc",
570 "aec3/echo_canceller3_unittest.cc", 577 "aec3/echo_canceller3_unittest.cc",
571 "aec3/echo_path_delay_estimator_unittest.cc", 578 "aec3/echo_path_delay_estimator_unittest.cc",
572 "aec3/echo_path_variability_unittest.cc", 579 "aec3/echo_path_variability_unittest.cc",
580 "aec3/echo_remover_metrics_unittest.cc",
573 "aec3/echo_remover_unittest.cc", 581 "aec3/echo_remover_unittest.cc",
574 "aec3/erl_estimator_unittest.cc", 582 "aec3/erl_estimator_unittest.cc",
575 "aec3/erle_estimator_unittest.cc", 583 "aec3/erle_estimator_unittest.cc",
576 "aec3/fft_buffer_unittest.cc", 584 "aec3/fft_buffer_unittest.cc",
577 "aec3/fft_data_unittest.cc", 585 "aec3/fft_data_unittest.cc",
578 "aec3/frame_blocker_unittest.cc", 586 "aec3/frame_blocker_unittest.cc",
579 "aec3/main_filter_update_gain_unittest.cc", 587 "aec3/main_filter_update_gain_unittest.cc",
580 "aec3/matched_filter_lag_aggregator_unittest.cc", 588 "aec3/matched_filter_lag_aggregator_unittest.cc",
581 "aec3/matched_filter_unittest.cc", 589 "aec3/matched_filter_unittest.cc",
582 "aec3/output_selector_unittest.cc", 590 "aec3/output_selector_unittest.cc",
583 "aec3/power_echo_model_unittest.cc", 591 "aec3/power_echo_model_unittest.cc",
584 "aec3/render_delay_buffer_unittest.cc", 592 "aec3/render_delay_buffer_unittest.cc",
593 "aec3/render_delay_controller_metrics_unittest.cc",
585 "aec3/render_delay_controller_unittest.cc", 594 "aec3/render_delay_controller_unittest.cc",
586 "aec3/render_signal_analyzer_unittest.cc", 595 "aec3/render_signal_analyzer_unittest.cc",
587 "aec3/residual_echo_estimator_unittest.cc", 596 "aec3/residual_echo_estimator_unittest.cc",
588 "aec3/shadow_filter_update_gain_unittest.cc", 597 "aec3/shadow_filter_update_gain_unittest.cc",
589 "aec3/subtractor_unittest.cc", 598 "aec3/subtractor_unittest.cc",
590 "aec3/suppression_filter_unittest.cc", 599 "aec3/suppression_filter_unittest.cc",
591 "aec3/suppression_gain_unittest.cc", 600 "aec3/suppression_gain_unittest.cc",
592 "audio_processing_impl_locking_unittest.cc", 601 "audio_processing_impl_locking_unittest.cc",
593 "audio_processing_impl_unittest.cc", 602 "audio_processing_impl_unittest.cc",
594 "audio_processing_unittest.cc", 603 "audio_processing_unittest.cc",
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 ] 813 ]
805 814
806 deps = [ 815 deps = [
807 ":audioproc_debug_proto", 816 ":audioproc_debug_proto",
808 "../..:webrtc_common", 817 "../..:webrtc_common",
809 "../../base:rtc_base_approved", 818 "../../base:rtc_base_approved",
810 ] 819 ]
811 } 820 }
812 } 821 }
813 } 822 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec3/aec3_common.h » ('j') | webrtc/modules/audio_processing/aec3/aec3_common.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698