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

Side by Side Diff: media/base/media_switches.cc

Issue 12025030: Add wrapper class to media for support of VP9 video, and add a command line flag to enable the supp… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/base/media_switches.h" 5 #include "media/base/media_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // Allow users to specify a custom buffer size for debugging purpose. 9 // Allow users to specify a custom buffer size for debugging purpose.
10 const char kAudioBufferSize[] = "audio-buffer-size"; 10 const char kAudioBufferSize[] = "audio-buffer-size";
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // Set number of threads to use for video decoding. 57 // Set number of threads to use for video decoding.
58 const char kVideoThreads[] = "video-threads"; 58 const char kVideoThreads[] = "video-threads";
59 59
60 // Enables support for encrypted media. Current implementation is 60 // Enables support for encrypted media. Current implementation is
61 // incomplete and this flag is used for development and testing. 61 // incomplete and this flag is used for development and testing.
62 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; 62 const char kEnableEncryptedMedia[] = "enable-encrypted-media";
63 63
64 // Enables Opus playback in media elements. 64 // Enables Opus playback in media elements.
65 const char kEnableOpusPlayback[] = "enable-opus-playback"; 65 const char kEnableOpusPlayback[] = "enable-opus-playback";
66 66
67 // Enables VP9 playback in media elements.
68 const char kEnableVp9Playback[] = "enable-vp9-playback";
69
67 } // namespace switches 70 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698