summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authoreero.hakkinen <eero.hakkinen@intel.com>2016-03-18 05:51:52 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-18 12:53:09 +0000
commitdc1557a2f96a9a8d85eec584ae22176352aee13d (patch)
tree9fedbbf846f3355640d9489c5ad4e794ba882eb3 /build
parenteb25561b784aeea6bc86aeb0621e2bff71d05770 (diff)
downloadchromium_src-dc1557a2f96a9a8d85eec584ae22176352aee13d.zip
chromium_src-dc1557a2f96a9a8d85eec584ae22176352aee13d.tar.gz
chromium_src-dc1557a2f96a9a8d85eec584ae22176352aee13d.tar.bz2
[chrome.displaySource] Implement elementary stream packetizer.
The WiFi Display elementary stream packetizer packetizes unit buffers to Packetized Elementary Stream (PES) packets. It will be used internally by a WiFi Display transport stream packetizer. This is part of a WiFi Display packetizer patch series: * https://codereview.chromium.org/1796123002/ <-- this CL WiFi Display elementary stream packetizer * https://codereview.chromium.org/1800493003/ WiFi Display elementary stream descriptors * https://codereview.chromium.org/1797953002/ WiFi Display transport stream packetizer * https://codereview.chromium.org/1796073003/ WiFi Display media packetizer BUG=242107 Review URL: https://codereview.chromium.org/1796123002 Cr-Commit-Position: refs/heads/master@{#381945}
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi1
-rw-r--r--build/config/features.gni1
2 files changed, 2 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index ac255aa..3289014 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -89,6 +89,7 @@
'enable_wayland_server%' : 0,
# Enable Wi-Fi Display support.
+ # WARNING: This enables MPEG Transport Stream (MPEG-TS) encoding!
'enable_wifi_display%' : 0,
# By default we build against a stable sysroot image to avoid
diff --git a/build/config/features.gni b/build/config/features.gni
index c965844..27906ec 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -99,6 +99,7 @@ declare_args() {
use_cups = (is_desktop_linux || is_mac) && !is_chromecast && !is_headless
# Enables Wi-Fi Display functionality
+ # WARNING: This enables MPEG Transport Stream (MPEG-TS) encoding!
enable_wifi_display = false
}