| 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 // Defines all the "media" command-line switches. | 5 // Defines all the "media" command-line switches. |
| 6 | 6 |
| 7 #ifndef MEDIA_BASE_MEDIA_SWITCHES_H_ | 7 #ifndef MEDIA_BASE_MEDIA_SWITCHES_H_ |
| 8 #define MEDIA_BASE_MEDIA_SWITCHES_H_ | 8 #define MEDIA_BASE_MEDIA_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #if defined(OS_ANDROID) | 25 #if defined(OS_ANDROID) |
| 26 MEDIA_EXPORT extern const char kDisableUnifiedMediaPipeline[]; | 26 MEDIA_EXPORT extern const char kDisableUnifiedMediaPipeline[]; |
| 27 #endif | 27 #endif |
| 28 | 28 |
| 29 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_SOLARIS) | 29 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_SOLARIS) |
| 30 MEDIA_EXPORT extern const char kAlsaInputDevice[]; | 30 MEDIA_EXPORT extern const char kAlsaInputDevice[]; |
| 31 MEDIA_EXPORT extern const char kAlsaOutputDevice[]; | 31 MEDIA_EXPORT extern const char kAlsaOutputDevice[]; |
| 32 #endif | 32 #endif |
| 33 | 33 |
| 34 MEDIA_EXPORT extern const char kUseGpuMemoryBuffersForCapture[]; | |
| 35 | |
| 36 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
| 37 MEDIA_EXPORT extern const char kEnableExclusiveAudio[]; | 35 MEDIA_EXPORT extern const char kEnableExclusiveAudio[]; |
| 38 MEDIA_EXPORT extern const char kForceMediaFoundationVideoCapture[]; | 36 MEDIA_EXPORT extern const char kForceMediaFoundationVideoCapture[]; |
| 39 MEDIA_EXPORT extern const char kForceWaveAudio[]; | 37 MEDIA_EXPORT extern const char kForceWaveAudio[]; |
| 40 MEDIA_EXPORT extern const char kTrySupportedChannelLayouts[]; | 38 MEDIA_EXPORT extern const char kTrySupportedChannelLayouts[]; |
| 41 MEDIA_EXPORT extern const char kWaveOutBuffers[]; | 39 MEDIA_EXPORT extern const char kWaveOutBuffers[]; |
| 42 #endif | 40 #endif |
| 43 | 41 |
| 44 #if defined(USE_CRAS) | 42 #if defined(USE_CRAS) |
| 45 MEDIA_EXPORT extern const char kUseCras[]; | 43 MEDIA_EXPORT extern const char kUseCras[]; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 MEDIA_EXPORT extern const base::Feature kNewAudioRenderingMixingStrategy; | 84 MEDIA_EXPORT extern const base::Feature kNewAudioRenderingMixingStrategy; |
| 87 MEDIA_EXPORT extern const base::Feature kOverlayFullscreenVideo; | 85 MEDIA_EXPORT extern const base::Feature kOverlayFullscreenVideo; |
| 88 MEDIA_EXPORT extern const base::Feature kResumeBackgroundVideo; | 86 MEDIA_EXPORT extern const base::Feature kResumeBackgroundVideo; |
| 89 MEDIA_EXPORT extern const base::Feature kUseNewMediaCache; | 87 MEDIA_EXPORT extern const base::Feature kUseNewMediaCache; |
| 90 MEDIA_EXPORT extern const base::Feature kVideoColorManagement; | 88 MEDIA_EXPORT extern const base::Feature kVideoColorManagement; |
| 91 MEDIA_EXPORT extern const base::Feature kExternalClearKeyForTesting; | 89 MEDIA_EXPORT extern const base::Feature kExternalClearKeyForTesting; |
| 92 | 90 |
| 93 } // namespace media | 91 } // namespace media |
| 94 | 92 |
| 95 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ | 93 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ |
| OLD | NEW |