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

Unified Diff: build/common.gypi

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code cleanup Created 5 years, 11 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 | media/base/audio_decoder_config.h » ('j') | media/filters/stream_parser_factory.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index abfa247f63c1c9da79cb492be741815cf0799582..35ba18db93402a767b7b5f69c381971838d08ac4 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1468,6 +1468,9 @@
# Force disable libstdc++ debug mode.
'disable_glibcxx_debug%': 0,
+ # Set to 1 to enable AC3/EAC3 audio demuxing
DaleCurtis 2015/01/14 23:36:33 Do we need this here? I don't see any non media/ c
servolk 2015/01/14 23:44:11 Two reasons: 1. I was trying to keep gyp variables
DaleCurtis 2015/01/14 23:50:07 New values of this type are effectively banned, so
servolk 2015/01/15 00:06:45 Added the same option to media/media_options.gni f
DaleCurtis 2015/01/15 01:51:01 If it's only necessary in media/ and net/ I'd just
servolk 2015/01/15 02:37:20 Ok, I can try to move the media mime checks from n
DaleCurtis 2015/01/15 17:56:13 +rsleevi,wolenetz who are more familiar with the h
+ 'enable_ac3_eac3_audio_demuxing%': 0,
+
# Set to 1 to compile with MSE support for MPEG2 TS
'enable_mpeg2ts_stream_parser%': 0,
@@ -1805,6 +1808,7 @@
'use_system_fontconfig%': 1,
}],
['chromecast==1', {
+ 'enable_ac3_eac3_audio_demuxing%': 1,
'enable_mpeg2ts_stream_parser%': 1,
'ffmpeg_branding%': 'ChromeOS',
'ozone_platform_ozonex%': 1,
@@ -2647,6 +2651,9 @@
['enable_mpeg2ts_stream_parser==1', {
'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
}],
+ ['enable_ac3_eac3_audio_demuxing==1', {
+ 'defines': ['ENABLE_AC3_EAC3_AUDIO_DEMUXING'],
+ }],
],
}],
['enable_viewport==1', {
« no previous file with comments | « no previous file | media/base/audio_decoder_config.h » ('j') | media/filters/stream_parser_factory.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698