Mirko Bonadei ed005be788 Revert "Unify OOURA implementations in one directory."
This reverts commit 09b439c6f7fa15d7cedbfb74cc22e9512ce3df47.

Reason for revert: Breaks downstream project. Will reland tomorrow.

Original change's description:
> Unify OOURA implementations in one directory.
> 
> This CL moves the two OOURA implementations present in the WebRTC tree
> in one place.
> 
> No functional change is expected.
> 
> TBR=kwiberg@webrtc.org
> 
> No-Try: True
> Bug: webrtc:11509
> Change-Id: I330a9ec57e3dc65c9c8b43edd4bb295c55920efa
> Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/173682
> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
> Reviewed-by: Per Åhgren <peah@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#31106}

TBR=mbonadei@webrtc.org,peah@webrtc.org,kwiberg@webrtc.org

Change-Id: I41acf34aef6497adfa7750223acbcc3725db6feb
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: webrtc:11509
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/173706
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#31107}
2020-04-19 09:59:52 +00:00

70 lines
1.8 KiB
Plaintext

# Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
import("../../../webrtc.gni")
rtc_library("vad") {
visibility = [
"../*",
"../../../rtc_tools:*",
]
sources = [
"common.h",
"gmm.cc",
"gmm.h",
"noise_gmm_tables.h",
"pitch_based_vad.cc",
"pitch_based_vad.h",
"pitch_internal.cc",
"pitch_internal.h",
"pole_zero_filter.cc",
"pole_zero_filter.h",
"standalone_vad.cc",
"standalone_vad.h",
"vad_audio_proc.cc",
"vad_audio_proc.h",
"vad_audio_proc_internal.h",
"vad_circular_buffer.cc",
"vad_circular_buffer.h",
"voice_activity_detector.cc",
"voice_activity_detector.h",
"voice_gmm_tables.h",
]
deps = [
"../../../audio/utility:audio_frame_operations",
"../../../common_audio",
"../../../common_audio:common_audio_c",
"../../../common_audio/third_party/fft4g",
"../../../rtc_base:checks",
"../../audio_coding:isac_vad",
]
}
if (rtc_include_tests) {
rtc_library("vad_unittests") {
testonly = true
sources = [
"gmm_unittest.cc",
"pitch_based_vad_unittest.cc",
"pitch_internal_unittest.cc",
"pole_zero_filter_unittest.cc",
"standalone_vad_unittest.cc",
"vad_audio_proc_unittest.cc",
"vad_circular_buffer_unittest.cc",
"voice_activity_detector_unittest.cc",
]
deps = [
":vad",
"../../../common_audio",
"../../../test:fileutils",
"../../../test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}
}