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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 | 67 |
68 MEDIA_EXPORT extern const char kDisableRTCSmoothnessAlgorithm[]; | 68 MEDIA_EXPORT extern const char kDisableRTCSmoothnessAlgorithm[]; |
69 | 69 |
70 MEDIA_EXPORT extern const char kEnableVp9InMp4[]; | 70 MEDIA_EXPORT extern const char kEnableVp9InMp4[]; |
71 | 71 |
72 MEDIA_EXPORT extern const char kForceVideoOverlays[]; | 72 MEDIA_EXPORT extern const char kForceVideoOverlays[]; |
73 | 73 |
74 MEDIA_EXPORT extern const char kMSEAudioBufferSizeLimit[]; | 74 MEDIA_EXPORT extern const char kMSEAudioBufferSizeLimit[]; |
75 MEDIA_EXPORT extern const char kMSEVideoBufferSizeLimit[]; | 75 MEDIA_EXPORT extern const char kMSEVideoBufferSizeLimit[]; |
76 | 76 |
| 77 MEDIA_EXPORT extern const char kIgnoreMissingCdmHostFile[]; |
| 78 |
77 } // namespace switches | 79 } // namespace switches |
78 | 80 |
79 namespace media { | 81 namespace media { |
80 | 82 |
81 // All features in alphabetical order. The features should be documented | 83 // All features in alphabetical order. The features should be documented |
82 // alongside the definition of their values in the .cc file. | 84 // alongside the definition of their values in the .cc file. |
83 | 85 |
84 #if defined(OS_WIN) | 86 #if defined(OS_WIN) |
85 MEDIA_EXPORT extern const base::Feature kD3D11VideoDecoding; | 87 MEDIA_EXPORT extern const base::Feature kD3D11VideoDecoding; |
86 MEDIA_EXPORT extern const base::Feature kMediaFoundationH264Encoding; | 88 MEDIA_EXPORT extern const base::Feature kMediaFoundationH264Encoding; |
(...skipping 10 matching lines...) Expand all Loading... |
97 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; | 99 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; |
98 | 100 |
99 #if defined(OS_ANDROID) | 101 #if defined(OS_ANDROID) |
100 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; | 102 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; |
101 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; | 103 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; |
102 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; | 104 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; |
103 #endif // defined(OS_ANDROID) | 105 #endif // defined(OS_ANDROID) |
104 } // namespace media | 106 } // namespace media |
105 | 107 |
106 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ | 108 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ |
OLD | NEW |