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

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

Issue 12263013: media: Add support for playback of VP8 Alpha video streams (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « media/base/media_switches.h ('k') | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 // Disables support for Encrypted Media Extensions. 51 // Disables support for Encrypted Media Extensions.
52 const char kDisableEncryptedMedia[] = "disable-encrypted-media"; 52 const char kDisableEncryptedMedia[] = "disable-encrypted-media";
53 53
54 // Enables Opus playback in media elements. 54 // Enables Opus playback in media elements.
55 const char kEnableOpusPlayback[] = "enable-opus-playback"; 55 const char kEnableOpusPlayback[] = "enable-opus-playback";
56 56
57 // Enables VP9 playback in media elements. 57 // Enables VP9 playback in media elements.
58 const char kEnableVp9Playback[] = "enable-vp9-playback"; 58 const char kEnableVp9Playback[] = "enable-vp9-playback";
59 59
60 // Enables VP8 Alpha playback in media elements.
61 const char kEnableVp8AlphaPlayback[] = "enable-vp8-alpha-playback";
62
60 #if defined(OS_WIN) 63 #if defined(OS_WIN)
61 const char kWaveOutBuffers[] = "waveout-buffers"; 64 const char kWaveOutBuffers[] = "waveout-buffers";
62 #endif 65 #endif
63 66
64 } // namespace switches 67 } // namespace switches
OLDNEW
« no previous file with comments | « media/base/media_switches.h ('k') | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698