| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 MEDIA_EXPORT extern const char kEnableDefaultMediaSessionDuckFlash[]; | 51 MEDIA_EXPORT extern const char kEnableDefaultMediaSessionDuckFlash[]; |
| 52 #endif // BUILDFLAG(ENABLE_PLUGINS) | 52 #endif // BUILDFLAG(ENABLE_PLUGINS) |
| 53 | 53 |
| 54 #if BUILDFLAG(ENABLE_RUNTIME_MEDIA_RENDERER_SELECTION) | 54 #if BUILDFLAG(ENABLE_RUNTIME_MEDIA_RENDERER_SELECTION) |
| 55 MEDIA_EXPORT extern const char kDisableMojoRenderer[]; | 55 MEDIA_EXPORT extern const char kDisableMojoRenderer[]; |
| 56 #endif // BUILDFLAG(ENABLE_RUNTIME_MEDIA_RENDERER_SELECTION) | 56 #endif // BUILDFLAG(ENABLE_RUNTIME_MEDIA_RENDERER_SELECTION) |
| 57 | 57 |
| 58 MEDIA_EXPORT extern const char kUseFakeDeviceForMediaStream[]; | 58 MEDIA_EXPORT extern const char kUseFakeDeviceForMediaStream[]; |
| 59 MEDIA_EXPORT extern const char kUseFileForFakeVideoCapture[]; | 59 MEDIA_EXPORT extern const char kUseFileForFakeVideoCapture[]; |
| 60 MEDIA_EXPORT extern const char kUseFileForFakeAudioCapture[]; | 60 MEDIA_EXPORT extern const char kUseFileForFakeAudioCapture[]; |
| 61 MEDIA_EXPORT extern const char kUseFakeJpegDecodeAccelerator[]; |
| 61 | 62 |
| 62 MEDIA_EXPORT extern const char kEnableInbandTextTracks[]; | 63 MEDIA_EXPORT extern const char kEnableInbandTextTracks[]; |
| 63 | 64 |
| 64 MEDIA_EXPORT extern const char kRequireAudioHardwareForTesting[]; | 65 MEDIA_EXPORT extern const char kRequireAudioHardwareForTesting[]; |
| 65 | 66 |
| 66 MEDIA_EXPORT extern const char kVideoUnderflowThresholdMs[]; | 67 MEDIA_EXPORT extern const char kVideoUnderflowThresholdMs[]; |
| 67 | 68 |
| 68 MEDIA_EXPORT extern const char kDisableRTCSmoothnessAlgorithm[]; | 69 MEDIA_EXPORT extern const char kDisableRTCSmoothnessAlgorithm[]; |
| 69 | 70 |
| 70 MEDIA_EXPORT extern const char kEnableVp9InMp4[]; | 71 MEDIA_EXPORT extern const char kEnableVp9InMp4[]; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 99 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; | 100 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; |
| 100 | 101 |
| 101 #if defined(OS_ANDROID) | 102 #if defined(OS_ANDROID) |
| 102 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; | 103 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; |
| 103 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; | 104 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; |
| 104 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; | 105 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; |
| 105 #endif // defined(OS_ANDROID) | 106 #endif // defined(OS_ANDROID) |
| 106 } // namespace media | 107 } // namespace media |
| 107 | 108 |
| 108 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ | 109 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ |
| OLD | NEW |