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

Unified Diff: build/common.gypi

Issue 816353010: Implemented HEVC video demuxing and parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add enable_hevc_demuxing flag for conditional compilation 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
« no previous file with comments | « no previous file | media/BUILD.gn » ('j') | no next file with comments »
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 948dcece70dcd3ca0944135682591ff6440b9054..252c2f15624f5713a33cbf3e88142becbc140853 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1472,6 +1472,12 @@
# Set to 1 to compile with MSE support for MPEG2 TS
'enable_mpeg2ts_stream_parser%': 0,
+ # HEVC/H265 demuxing support. Uses FFmpeg demuxer, so for this to work
DaleCurtis 2015/02/06 19:08:29 This isn't allowed, you need to limit your option
+ # src/third_party/ffmpeg needs to be configured and built with
+ # --enable-demuxer=hevc and --enable-parser=hevc, see
+ # third_party/ffmpeg/chromium/scripts/build_ffmpeg.py
+ 'enable_hevc_demuxing%': 0,
+
# Support ChromeOS touchpad gestures with ozone.
'use_evdev_gestures%': 0,
@@ -1806,6 +1812,7 @@
'use_system_fontconfig%': 1,
}],
['chromecast==1', {
+ 'enable_hevc_demuxing%': 1,
'enable_mpeg2ts_stream_parser%': 1,
'ffmpeg_branding%': 'ChromeOS',
'ozone_platform_ozonex%': 1,
@@ -2651,6 +2658,9 @@
['enable_mpeg2ts_stream_parser==1', {
'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
}],
+ ['enable_hevc_demuxing==1', {
+ 'defines': ['ENABLE_HEVC_DEMUXING'],
+ }],
],
}],
['enable_viewport==1', {
« no previous file with comments | « no previous file | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698