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

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

Issue 2934833002: G722 implementation of the AudioEncoderFactoryTemplate API (Closed)
Patch Set: Created 3 years, 6 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/api/audio_codecs/BUILD.gn
diff --git a/webrtc/api/audio_codecs/BUILD.gn b/webrtc/api/audio_codecs/BUILD.gn
index f1cf6bd2c6f6736f4bdf14d6d36c116897df5352..433cd9fe75603283a1d5c03dff1f3bfb58deae0e 100644
--- a/webrtc/api/audio_codecs/BUILD.gn
+++ b/webrtc/api/audio_codecs/BUILD.gn
@@ -54,6 +54,25 @@ rtc_static_library("builtin_audio_encoder_factory") {
]
}
+rtc_source_set("audio_encoder_g722_config") {
+ sources = [
+ "audio_encoder_g722_config.h",
+ ]
+}
+
+rtc_static_library("audio_encoder_g722") {
+ sources = [
+ "audio_encoder_g722.cc",
+ "audio_encoder_g722.h",
+ ]
+ deps = [
+ ":audio_codecs_api",
+ ":audio_encoder_g722_config",
+ "../../base:rtc_base_approved",
+ "../../modules/audio_coding:g722",
+ ]
+}
+
rtc_static_library("audio_encoder_opus_config") {
sources = [
"audio_encoder_opus_config.cc",
« no previous file with comments | « no previous file | webrtc/api/audio_codecs/audio_encoder_g722.h » ('j') | webrtc/api/audio_codecs/audio_encoder_g722.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698