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

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1208993010: iSAC: Make separate AudioEncoder and AudioDecoder objects (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: review fixes Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/BUILD.gn
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
index 8a27900edf8bf05db90d64a262a3885f177bcd62..d98d9c35d30de60c5f512432732ad8da07522719 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -380,6 +380,15 @@ source_set("ilbc") {
]
}
+source_set("isac_common") {
+ sources = [
+ "codecs/isac/audio_encoder_isac_t.h",
+ "codecs/isac/audio_encoder_isac_t_impl.h",
+ "codecs/isac/locked_bandwidth_info.cc",
+ "codecs/isac/locked_bandwidth_info.h",
+ ]
+}
+
config("isac_config") {
include_dirs = [
"../../..",
@@ -389,8 +398,6 @@ config("isac_config") {
source_set("isac") {
sources = [
- "codecs/isac/audio_encoder_isac_t.h",
- "codecs/isac/audio_encoder_isac_t_impl.h",
"codecs/isac/main/interface/audio_encoder_isac.h",
"codecs/isac/main/interface/isac.h",
"codecs/isac/main/source/arith_routines.c",
@@ -458,6 +465,7 @@ source_set("isac") {
deps = [
":audio_decoder_interface",
":audio_encoder_interface",
+ ":isac_common",
"../../common_audio",
]
}
@@ -471,8 +479,6 @@ config("isac_fix_config") {
source_set("isac_fix") {
sources = [
- "codecs/isac/audio_encoder_isac_t.h",
- "codecs/isac/audio_encoder_isac_t_impl.h",
"codecs/isac/fix/interface/audio_encoder_isacfix.h",
"codecs/isac/fix/interface/isacfix.h",
"codecs/isac/fix/source/arith_routines.c",
@@ -533,6 +539,7 @@ source_set("isac_fix") {
deps = [
":audio_encoder_interface",
+ ":isac_common",
"../../common_audio",
"../../system_wrappers",
]

Powered by Google App Engine
This is Rietveld 408576698