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

Unified Diff: chromecast/media/cma/backend/alsa/BUILD.gn

Issue 2771143002: Implement runtime audio post-processing pipeline. See go/cast_audio.json (Closed)
Patch Set: Suffix governor with _1.0 Created 3 years, 9 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 | chromecast/media/cma/backend/alsa/audio_filter_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/cma/backend/alsa/BUILD.gn
diff --git a/chromecast/media/cma/backend/alsa/BUILD.gn b/chromecast/media/cma/backend/alsa/BUILD.gn
index 3552bc4c6c491185cea0330e7ce5861569488eeb..f45d0df79f79ef7933eb782cedf7444579950707 100644
--- a/chromecast/media/cma/backend/alsa/BUILD.gn
+++ b/chromecast/media/cma/backend/alsa/BUILD.gn
@@ -44,6 +44,10 @@ source_set("alsa_cma_backend") {
"filter_group.h",
"media_pipeline_backend_alsa.cc",
"media_pipeline_backend_alsa.h",
+ "post_processing_pipeline.cc",
+ "post_processing_pipeline.h",
+ "post_processing_pipeline_parser.cc",
+ "post_processing_pipeline_parser.h",
"stream_mixer_alsa.cc",
"stream_mixer_alsa.h",
"stream_mixer_alsa_input.cc",
@@ -57,7 +61,6 @@ source_set("alsa_cma_backend") {
deps = [
":alsa_features",
- ":audio_filter_includes",
":slew_volume",
"//base",
"//chromecast/base",
@@ -69,34 +72,6 @@ source_set("alsa_cma_backend") {
"//media",
"//media:shared_memory_support",
]
-
- if (chromecast_branding != "google") {
- deps += [ ":audio_filter_null" ]
- } else {
- deps += [ "//chromecast/internal/media/cma/backend/alsa:filter" ]
- }
-}
-
-source_set("audio_filter_null") {
- sources = [
- "audio_filter_factory_default.cc",
- ]
-
- deps = [
- ":audio_filter_includes",
- ]
-}
-
-source_set("audio_filter_includes") {
- sources = [
- "audio_filter_factory.h",
- "audio_filter_interface.h",
- ]
-
- deps = [
- "//base",
- "//media",
- ]
}
source_set("slew_volume") {
@@ -106,7 +81,7 @@ source_set("slew_volume") {
]
deps = [
"//base",
- "//media",
+ "//media:shared_memory_support",
]
}
@@ -156,3 +131,16 @@ source_set("test_support") {
"//testing/gmock",
]
}
+
+shared_library("libcast_governor_1.0") {
+ sources = [
+ "post_processors/governor_shlib.cc",
+ ]
+
+ deps = [
+ ":slew_volume",
+ "//base",
+ "//chromecast/base",
+ "//chromecast/public/media",
+ ]
+}
« no previous file with comments | « no previous file | chromecast/media/cma/backend/alsa/audio_filter_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698