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

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

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving VP8 Alpha Playback behind its own flag Created 7 years, 10 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 // Disables support for Encrypted Media Extensions. 56 // Disables support for Encrypted Media Extensions.
57 const char kDisableEncryptedMedia[] = "disable-encrypted-media"; 57 const char kDisableEncryptedMedia[] = "disable-encrypted-media";
58 58
59 // Enables Opus playback in media elements. 59 // Enables Opus playback in media elements.
60 const char kEnableOpusPlayback[] = "enable-opus-playback"; 60 const char kEnableOpusPlayback[] = "enable-opus-playback";
61 61
62 // Enables VP9 playback in media elements. 62 // Enables VP9 playback in media elements.
63 const char kEnableVp9Playback[] = "enable-vp9-playback"; 63 const char kEnableVp9Playback[] = "enable-vp9-playback";
64 64
65 // Enables VP8 Alpha playback in media elements.
66 const char kEnableVp8AlphaPlayback[] = "enable-vp8-alpha-playback";
67
65 // Force audio input streams to be created as virtual streams. Can be used 68 // Force audio input streams to be created as virtual streams. Can be used
66 // with WebRTC apps for audio mirroring testing. 69 // with WebRTC apps for audio mirroring testing.
67 const char kForceAudioMirroring[] = "force-audio-mirroring"; 70 const char kForceAudioMirroring[] = "force-audio-mirroring";
68 71
69 } // namespace switches 72 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698