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

Unified Diff: media/media.gyp

Issue 812643005: Re-add AC3/EAC3 audio demuxing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move CanPlay tests into _mp4 test case Created 5 years, 1 month 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: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 5f0fd68b76c8bd9a446bcbf38e71cd9c31545f3d..53b5399c0eff7c3678392d42b5b4bb066e2f1d65 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -37,8 +37,12 @@
# Enable HEVC/H265 demuxing. Actual decoding must be provided by the
# platform.
'enable_hevc_demuxing%': 1,
+ # Enable AC3/EAC3 audio demuxing. Actual decoding must be provided by the
+ # platform (or HDMI sink in Chromecast for audio pass-through case).
+ 'enable_ac3_eac3_demuxing%': 1,
}, {
'enable_hevc_demuxing%': 0,
+ 'enable_ac3_eac3_demuxing%': 0,
}],
],
},
@@ -1119,6 +1123,11 @@
'formats/mp4/hevc.h',
],
}],
+ ['proprietary_codecs==1 and enable_ac3_eac3_demuxing==1', {
+ 'defines': [
+ 'ENABLE_AC3_EAC3_DEMUXING'
+ ],
+ }],
['proprietary_codecs==1 and enable_hevc_demuxing==1 and media_use_ffmpeg==1', {
'sources': [
'filters/ffmpeg_h265_to_annex_b_bitstream_converter.cc',

Powered by Google App Engine
This is Rietveld 408576698