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