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

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: Added hevc handling in media/base/android/media_codec_bridge.cc Created 5 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
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index e900cc4a6e72266d3c29f75608c6981acf567e28..9e8d0294906219104a25e16eed600cf9502348b7 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1843,6 +1843,11 @@
'video_hole%': 1,
}],
],
+ # HEVC/H265 demuxing support. Note that toggling this flag will enable
ddorwin 2015/03/25 01:21:59 Where is the equivalent GN change?
servolk 2015/03/25 02:20:20 This chunk is inside a conditions section guarded
+ # only HEVC demuxing support, it does not imply decoding support (since
+ # HEVC is proprietary and HEVC decoders typically require additional
+ # licensing). Chromecast has hardware HEVC decoder on some platforms.
ddorwin 2015/03/25 01:21:59 Do you have codec detection yet? If not, you canno
servolk 2015/03/25 02:20:20 No codec detection yet, but again, this is inside
ddorwin 2015/03/25 18:02:57 But you ARE enabling it by default for all Chromec
servolk 2015/04/29 23:50:32 Yes, but that was because the current mechanism of
+ 'defines': ['ENABLE_HEVC_DEMUXING'],
}],
['android_webview_build==1', {
# When building the WebView in the Android tree, jarjar will remap all

Powered by Google App Engine
This is Rietveld 408576698