| OLD | NEW |
| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 // Enables VP8 Alpha playback in media elements. | 48 // Enables VP8 Alpha playback in media elements. |
| 49 const char kEnableVp8AlphaPlayback[] = "enable-vp8-alpha-playback"; | 49 const char kEnableVp8AlphaPlayback[] = "enable-vp8-alpha-playback"; |
| 50 | 50 |
| 51 // Enable EAC3 playback in MSE. | 51 // Enable EAC3 playback in MSE. |
| 52 const char kEnableEac3Playback[] = "enable-eac3-playback"; | 52 const char kEnableEac3Playback[] = "enable-eac3-playback"; |
| 53 | 53 |
| 54 #if defined(OS_WIN) | 54 #if defined(OS_WIN) |
| 55 const char kWaveOutBuffers[] = "waveout-buffers"; | 55 const char kWaveOutBuffers[] = "waveout-buffers"; |
| 56 #endif | 56 #endif |
| 57 | 57 |
| 58 #if defined(GOOGLE_TV) |
| 59 // Use external video surface for video with more than or equal pixels to |
| 60 // specified value. For example, value of 0 will enable external video surface |
| 61 // for all videos, and value of 921600 (=1280*720) will enable external video |
| 62 // surface for 720p video and larger. |
| 63 const char kUseExternalVideoSurfaceThresholdInPixels[] = |
| 64 "use-external-video-surface-threshold-in-pixels"; |
| 65 #endif |
| 66 |
| 67 |
| 58 } // namespace switches | 68 } // namespace switches |
| OLD | NEW |