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

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: Fixed unit tests Created 5 years, 10 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: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 6d7692c09e7a97a66e9db177a62e9141491f5b3c..a3427d24a261d88e0b6ad7aa1c7c84277ff2ecde 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1473,6 +1473,9 @@
# Force disable libstdc++ debug mode.
'disable_glibcxx_debug%': 0,
+ # Set to 1 to enable AC3/EAC3 audio demuxing
+ 'enable_ac3_eac3_audio_demuxing%': 0,
+
# Set to 1 to compile with MSE support for MPEG2 TS
'enable_mpeg2ts_stream_parser%': 0,
@@ -1809,6 +1812,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,
@@ -2656,6 +2660,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', {

Powered by Google App Engine
This is Rietveld 408576698