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

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

Issue 2644123002: Adding full initial version of delay estimation functionality in echo canceller 3 (Closed)
Patch Set: Rebase Created 3 years, 10 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/aec3_constants.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 15 matching lines...) Expand all
26 "aec/aec_resampler.h", 26 "aec/aec_resampler.h",
27 "aec/echo_cancellation.cc", 27 "aec/echo_cancellation.cc",
28 "aec/echo_cancellation.h", 28 "aec/echo_cancellation.h",
29 "aec3/aec3_constants.h", 29 "aec3/aec3_constants.h",
30 "aec3/block_framer.cc", 30 "aec3/block_framer.cc",
31 "aec3/block_framer.h", 31 "aec3/block_framer.h",
32 "aec3/block_processor.cc", 32 "aec3/block_processor.cc",
33 "aec3/block_processor.h", 33 "aec3/block_processor.h",
34 "aec3/cascaded_biquad_filter.cc", 34 "aec3/cascaded_biquad_filter.cc",
35 "aec3/cascaded_biquad_filter.h", 35 "aec3/cascaded_biquad_filter.h",
36 "aec3/decimator_by_4.cc",
37 "aec3/decimator_by_4.h",
36 "aec3/echo_canceller3.cc", 38 "aec3/echo_canceller3.cc",
37 "aec3/echo_canceller3.h", 39 "aec3/echo_canceller3.h",
38 "aec3/echo_path_delay_estimator.cc", 40 "aec3/echo_path_delay_estimator.cc",
39 "aec3/echo_path_delay_estimator.h", 41 "aec3/echo_path_delay_estimator.h",
40 "aec3/echo_path_variability.h", 42 "aec3/echo_path_variability.h",
41 "aec3/echo_remover.cc", 43 "aec3/echo_remover.cc",
42 "aec3/echo_remover.h", 44 "aec3/echo_remover.h",
43 "aec3/frame_blocker.cc", 45 "aec3/frame_blocker.cc",
44 "aec3/frame_blocker.h", 46 "aec3/frame_blocker.h",
47 "aec3/matched_filter.cc",
48 "aec3/matched_filter.h",
49 "aec3/matched_filter_lag_aggregator.cc",
50 "aec3/matched_filter_lag_aggregator.h",
45 "aec3/render_delay_buffer.cc", 51 "aec3/render_delay_buffer.cc",
46 "aec3/render_delay_buffer.h", 52 "aec3/render_delay_buffer.h",
47 "aec3/render_delay_controller.cc", 53 "aec3/render_delay_controller.cc",
48 "aec3/render_delay_controller.h", 54 "aec3/render_delay_controller.h",
49 "aecm/aecm_core.cc", 55 "aecm/aecm_core.cc",
50 "aecm/aecm_core.h", 56 "aecm/aecm_core.h",
51 "aecm/echo_control_mobile.cc", 57 "aecm/echo_control_mobile.cc",
52 "aecm/echo_control_mobile.h", 58 "aecm/echo_control_mobile.h",
53 "agc/agc.cc", 59 "agc/agc.cc",
54 "agc/agc.h", 60 "agc/agc.h",
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] 518 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
513 deps += [ 519 deps += [
514 ":audioproc_debug_proto", 520 ":audioproc_debug_proto",
515 ":audioproc_protobuf_utils", 521 ":audioproc_protobuf_utils",
516 ":audioproc_unittest_proto", 522 ":audioproc_unittest_proto",
517 ] 523 ]
518 sources += [ 524 sources += [
519 "aec3/block_framer_unittest.cc", 525 "aec3/block_framer_unittest.cc",
520 "aec3/block_processor_unittest.cc", 526 "aec3/block_processor_unittest.cc",
521 "aec3/cascaded_biquad_filter_unittest.cc", 527 "aec3/cascaded_biquad_filter_unittest.cc",
528 "aec3/decimator_by_4_unittest.cc",
522 "aec3/echo_canceller3_unittest.cc", 529 "aec3/echo_canceller3_unittest.cc",
523 "aec3/echo_path_delay_estimator_unittest.cc", 530 "aec3/echo_path_delay_estimator_unittest.cc",
524 "aec3/echo_remover_unittest.cc", 531 "aec3/echo_remover_unittest.cc",
525 "aec3/frame_blocker_unittest.cc", 532 "aec3/frame_blocker_unittest.cc",
533 "aec3/matched_filter_lag_aggregator_unittest.cc",
534 "aec3/matched_filter_unittest.cc",
526 "aec3/mock/mock_block_processor.h", 535 "aec3/mock/mock_block_processor.h",
527 "aec3/mock/mock_echo_remover.h", 536 "aec3/mock/mock_echo_remover.h",
528 "aec3/mock/mock_render_delay_buffer.h", 537 "aec3/mock/mock_render_delay_buffer.h",
529 "aec3/mock/mock_render_delay_controller.h", 538 "aec3/mock/mock_render_delay_controller.h",
530 "aec3/render_delay_buffer_unittest.cc", 539 "aec3/render_delay_buffer_unittest.cc",
531 "aec3/render_delay_controller_unittest.cc", 540 "aec3/render_delay_controller_unittest.cc",
532 "audio_processing_impl_locking_unittest.cc", 541 "audio_processing_impl_locking_unittest.cc",
533 "audio_processing_impl_unittest.cc", 542 "audio_processing_impl_unittest.cc",
534 "audio_processing_unittest.cc", 543 "audio_processing_unittest.cc",
535 "beamformer/nonlinear_beamformer_unittest.cc", 544 "beamformer/nonlinear_beamformer_unittest.cc",
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 ] 753 ]
745 754
746 deps = [ 755 deps = [
747 ":audioproc_debug_proto", 756 ":audioproc_debug_proto",
748 "../..:webrtc_common", 757 "../..:webrtc_common",
749 "../../base:rtc_base_approved", 758 "../../base:rtc_base_approved",
750 ] 759 ]
751 } 760 }
752 } 761 }
753 } 762 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec3/aec3_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698