aboutsummaryrefslogtreecommitdiff
path: root/pc
diff options
context:
space:
mode:
authorKarl Wiberg <kwiberg@webrtc.org>2018-04-27 04:31:53 +0200
committerCommit Bot <commit-bot@chromium.org>2018-05-04 08:53:34 +0000
commit7ba22b8eea5be64f273c82de6e0630c77bfbfb9d (patch)
treebc50f851a9fa44c5c44cc8b153cef2f7043307f1 /pc
parent939eb80ed0a563a2cd52516e254b4423b92c6413 (diff)
downloadwebrtc-7ba22b8eea5be64f273c82de6e0630c77bfbfb9d.tar.gz
Break out the part of the iSAC codec that's used for Voice Activity Detection
The audio processing code is using parts of the iSAC codec to do voice activity detection (VAD), but it's undesirable for it to pull in the entire iSAC codec as a dependency. So this CL factors out the parts of iSAC that's needed for VAD to a separate build target. Bug: webrtc:8396 Change-Id: I884e25d8fd0bc815fca664352b0573b4b173880e Reviewed-on: https://webrtc-review.googlesource.com/69640 Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org> Commit-Queue: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23110}
Diffstat (limited to 'pc')
-rw-r--r--pc/BUILD.gn2
1 files changed, 0 insertions, 2 deletions
diff --git a/pc/BUILD.gn b/pc/BUILD.gn
index 5cb084fc57..3f00dfaed4 100644
--- a/pc/BUILD.gn
+++ b/pc/BUILD.gn
@@ -27,7 +27,6 @@ config("rtc_pc_config") {
rtc_static_library("rtc_pc_base") {
visibility = [ "*" ]
- allow_poison = [ "audio_codecs" ] # TODO(bugs.webrtc.org/8396): Remove.
defines = []
sources = [
"audiomonitor.h",
@@ -124,7 +123,6 @@ config("libjingle_peerconnection_warnings_config") {
rtc_static_library("peerconnection") {
visibility = [ "*" ]
- allow_poison = [ "audio_codecs" ] # TODO(bugs.webrtc.org/8396): Remove.
cflags = []
sources = [
"audiotrack.cc",