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 | |
79 } // namespace switches | 77 } // namespace switches |
80 | 78 |
81 namespace media { | 79 namespace media { |
82 | 80 |
83 // All features in alphabetical order. The features should be documented | 81 // All features in alphabetical order. The features should be documented |
84 // alongside the definition of their values in the .cc file. | 82 // alongside the definition of their values in the .cc file. |
85 | 83 |
86 #if defined(OS_WIN) | 84 #if defined(OS_WIN) |
87 MEDIA_EXPORT extern const base::Feature kD3D11VideoDecoding; | 85 MEDIA_EXPORT extern const base::Feature kD3D11VideoDecoding; |
88 MEDIA_EXPORT extern const base::Feature kMediaFoundationH264Encoding; | 86 MEDIA_EXPORT extern const base::Feature kMediaFoundationH264Encoding; |
(...skipping 10 matching lines...) Expand all Loading... |
99 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; | 97 MEDIA_EXPORT extern const base::Feature kMemoryPressureBasedSourceBufferGC; |
100 | 98 |
101 #if defined(OS_ANDROID) | 99 #if defined(OS_ANDROID) |
102 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; | 100 MEDIA_EXPORT extern const base::Feature kAndroidMediaPlayerRenderer; |
103 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; | 101 MEDIA_EXPORT extern const base::Feature kVideoFullscreenOrientationLock; |
104 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; | 102 MEDIA_EXPORT extern const base::Feature kMediaDrmPersistentLicense; |
105 #endif // defined(OS_ANDROID) | 103 #endif // defined(OS_ANDROID) |
106 } // namespace media | 104 } // namespace media |
107 | 105 |
108 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ | 106 #endif // MEDIA_BASE_MEDIA_SWITCHES_H_ |
OLD | NEW |