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

Unified Diff: webrtc/api/audio_codecs/isac/BUILD.gn

Issue 3001483002: iSAC floating-point implementation of the Audio{En,De}coderFactoryTemplate APIs (Closed)
Patch Set: review comments Created 3 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
« no previous file with comments | « no previous file | webrtc/api/audio_codecs/isac/audio_decoder_isac_float.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/audio_codecs/isac/BUILD.gn
diff --git a/webrtc/api/audio_codecs/isac/BUILD.gn b/webrtc/api/audio_codecs/isac/BUILD.gn
index 164babf92c1572cceb47a2b6fcfa54604bab2eff..3340e28a06a8830400b91e9731cdbf14a93e8f93 100644
--- a/webrtc/api/audio_codecs/isac/BUILD.gn
+++ b/webrtc/api/audio_codecs/isac/BUILD.gn
@@ -37,3 +37,29 @@ rtc_static_library("audio_decoder_isac_fix") {
"../../../rtc_base:rtc_base_approved",
]
}
+
+rtc_static_library("audio_encoder_isac_float") {
+ sources = [
+ "audio_encoder_isac_float.cc",
+ "audio_encoder_isac_float.h",
+ ]
+ deps = [
+ "..:audio_codecs_api",
+ "../../..:webrtc_common",
+ "../../../modules/audio_coding:isac",
+ "../../../rtc_base:rtc_base_approved",
+ ]
+}
+
+rtc_static_library("audio_decoder_isac_float") {
+ sources = [
+ "audio_decoder_isac_float.cc",
+ "audio_decoder_isac_float.h",
+ ]
+ deps = [
+ "..:audio_codecs_api",
+ "../../..:webrtc_common",
+ "../../../modules/audio_coding:isac",
+ "../../../rtc_base:rtc_base_approved",
+ ]
+}
« no previous file with comments | « no previous file | webrtc/api/audio_codecs/isac/audio_decoder_isac_float.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698