diff options
author | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-22 02:00:26 +0000 |
---|---|---|
committer | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-22 02:00:26 +0000 |
commit | e17c547493001b9195e1209b9444d2aee676c826 (patch) | |
tree | 63cb2af3787464e60b62f00a83e2ec9dabd0ed0b /chrome/browser/about_flags.cc | |
parent | 668719e2ddde41c16cecb3774decfc0b5799e753 (diff) | |
download | chromium_src-e17c547493001b9195e1209b9444d2aee676c826.zip chromium_src-e17c547493001b9195e1209b9444d2aee676c826.tar.gz chromium_src-e17c547493001b9195e1209b9444d2aee676c826.tar.bz2 |
Add wrapper class to media for support of VP9 video, and add a command line flag to enable the support.
This initial version of the wrapper provides support for decoding VP9 video in WebM container files, and is disabled by default.
New flag added: --enable-vp9-playback
TBR=brettw,scherkus,xhwang
BUG=166094
TEST=VP9 video in WebM containers plays back in <video> elements when --enable-vp9-playback is specified on the command line.
Review URL: https://codereview.chromium.org/11644078
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174488 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/about_flags.cc')
-rw-r--r-- | chrome/browser/about_flags.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index b49d6c9..4383f49 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -650,6 +650,13 @@ const Experiment kExperiments[] = { kOsAll, SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) }, + { + "enable-vp9-playback", + IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, + IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, + kOsAll, + SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) + }, #if defined(USE_ASH) { "ash-disable-auto-window-placement", |