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

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

Issue 12443003: Implement out-of-band video compositing on Android: Step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 #if defined(OS_WIN) 65 #if defined(OS_WIN)
66 const char kWaveOutBuffers[] = "waveout-buffers"; 66 const char kWaveOutBuffers[] = "waveout-buffers";
67 #endif 67 #endif
68 68
69 #if defined(OS_ANDROID)
70 // Always use external video surface. Normally, external video surfaces are used
71 // sparingly.
72 const char kUseExternalVideoSurface[] = "use-external-video-surface";
scherkus (not reviewing) 2013/03/07 18:59:11 sorry for not spotting this earlier, but this swit
wonsik 2013/03/11 12:32:44 Done.
73 #endif
74
69 } // namespace switches 75 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698