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 "media/base/media_switches.h" | 5 #include "media/base/media_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // Allow users to specify a custom buffer size for debugging purpose. | 9 // Allow users to specify a custom buffer size for debugging purpose. |
10 const char kAudioBufferSize[] = "audio-buffer-size"; | 10 const char kAudioBufferSize[] = "audio-buffer-size"; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 // Enables support for encrypted media. Current implementation is | 56 // Enables support for encrypted media. Current implementation is |
57 // incomplete and this flag is used for development and testing. | 57 // incomplete and this flag is used for development and testing. |
58 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 58 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
59 | 59 |
60 // Enables Opus playback in media elements. | 60 // Enables Opus playback in media elements. |
61 const char kEnableOpusPlayback[] = "enable-opus-playback"; | 61 const char kEnableOpusPlayback[] = "enable-opus-playback"; |
62 | 62 |
63 // Enables VP9 playback in media elements. | 63 // Enables VP9 playback in media elements. |
64 const char kEnableVp9Playback[] = "enable-vp9-playback"; | 64 const char kEnableVp9Playback[] = "enable-vp9-playback"; |
65 | 65 |
| 66 // Force audio input streams to be created as virtual streams. Can be used |
| 67 // with WebRTC apps for audio mirroring testing. |
| 68 const char kForceAudioMirroring[] = "force-audio-mirroring"; |
| 69 |
66 } // namespace switches | 70 } // namespace switches |
OLD | NEW |