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

Unified Diff: media/media_options.gni

Issue 1517473002: Support HLS MPEG2 TS with SAMPLE-AES encryption. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@encryption_scheme
Patch Set: move some gn defs Created 4 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: media/media_options.gni
diff --git a/media/media_options.gni b/media/media_options.gni
index cedcdf7132793b16af8af32d28b0a981f2d924e6..5191517c9ed2d5284411933391d65248b6e531dd 100644
--- a/media/media_options.gni
+++ b/media/media_options.gni
@@ -44,10 +44,18 @@ declare_args() {
# platform. Enable by default for Chromecast.
enable_hevc_demuxing = proprietary_codecs && is_chromecast
+ # Enable HLS with SAMPLE-AES decryption. Actual decryption must be provided by
ddorwin 2016/04/12 00:40:48 Is the second sentence relevant? It's always provi
dougsteed 2016/05/08 23:18:45 Done.
+ # the platform. Enabled by default on the cast desktop implementation to allow
ddorwin 2016/04/12 00:40:48 nit: I suggest separating the explanation of the l
dougsteed 2016/05/08 23:18:45 Done.
+ # unit tests of the MP2TS parsing support.
+ enable_hls_sample_aes = proprietary_codecs && is_cast_desktop_build
+
# TODO(GYP): This should be a platform define.
is_openbsd = false
}
+# enable_hls_sample_aes can only be true if enable_mse_mpeg2ts_stream_parser is.
+assert(enable_mse_mpeg2ts_stream_parser || !enable_hls_sample_aes)
+
# Use a second declare_args() to pick up possible overrides of |use_cras|.
declare_args() {
# Enables runtime selection of PulseAudio library.

Powered by Google App Engine
This is Rietveld 408576698