| 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 "media/base/media_switches.h" | 6 #include "media/base/media_switches.h" |
| 6 | 7 |
| 7 namespace switches { | 8 namespace switches { |
| 8 | 9 |
| 9 // Allow users to specify a custom buffer size for debugging purpose. | 10 // Allow users to specify a custom buffer size for debugging purpose. |
| 10 const char kAudioBufferSize[] = "audio-buffer-size"; | 11 const char kAudioBufferSize[] = "audio-buffer-size"; |
| 11 | 12 |
| 12 // Set number of threads to use for video decoding. | 13 // Set number of threads to use for video decoding. |
| 13 const char kVideoThreads[] = "video-threads"; | 14 const char kVideoThreads[] = "video-threads"; |
| 14 | 15 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 126 |
| 126 // Disables the new rendering algorithm for webrtc, which is designed to improve | 127 // Disables the new rendering algorithm for webrtc, which is designed to improve |
| 127 // the rendering smoothness. | 128 // the rendering smoothness. |
| 128 const char kDisableRTCSmoothnessAlgorithm[] = | 129 const char kDisableRTCSmoothnessAlgorithm[] = |
| 129 "disable-rtc-smoothness-algorithm"; | 130 "disable-rtc-smoothness-algorithm"; |
| 130 | 131 |
| 131 // Use shared block-based buffering for media. | 132 // Use shared block-based buffering for media. |
| 132 const char kUseNewMediaCache[] = "use-new-media-cache"; | 133 const char kUseNewMediaCache[] = "use-new-media-cache"; |
| 133 | 134 |
| 134 } // namespace switches | 135 } // namespace switches |
| OLD | NEW |