| 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 #include "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "media/base/media_switches.h" | 6 #include "media/base/media_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Allow users to specify a custom buffer size for debugging purpose. | 10 // Allow users to specify a custom buffer size for debugging purpose. |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 base::FEATURE_DISABLED_BY_DEFAULT}; | 134 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 135 #endif // defined(ENABLE_PLUGINS) | 135 #endif // defined(ENABLE_PLUGINS) |
| 136 | 136 |
| 137 // Use new audio rendering mixer. | 137 // Use new audio rendering mixer. |
| 138 const base::Feature kNewAudioRenderingMixingStrategy{ | 138 const base::Feature kNewAudioRenderingMixingStrategy{ |
| 139 "NewAudioRenderingMixingStrategy", base::FEATURE_DISABLED_BY_DEFAULT}; | 139 "NewAudioRenderingMixingStrategy", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 140 | 140 |
| 141 // Use shared block-based buffering for media. | 141 // Use shared block-based buffering for media. |
| 142 const base::Feature kUseNewMediaCache{"use-new-media-cache", | 142 const base::Feature kUseNewMediaCache{"use-new-media-cache", |
| 143 base::FEATURE_ENABLED_BY_DEFAULT}; | 143 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 144 // Correct video colors based on output display? |
| 145 const base::Feature kVideoColorManagement{"video-color-management", |
| 146 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 144 | 147 |
| 145 } // namespace media | 148 } // namespace media |
| OLD | NEW |