Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: media/base/media_switches.cc

Issue 2141293002: [Cast for ATV] Enable UMP on Cast for ATV (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit tests Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 // Disables the new rendering algorithm for webrtc, which is designed to improve 117 // Disables the new rendering algorithm for webrtc, which is designed to improve
118 // the rendering smoothness. 118 // the rendering smoothness.
119 const char kDisableRTCSmoothnessAlgorithm[] = 119 const char kDisableRTCSmoothnessAlgorithm[] =
120 "disable-rtc-smoothness-algorithm"; 120 "disable-rtc-smoothness-algorithm";
121 121
122 // Enables demuxing of vp9 in mp4. Note that this flag will not have any effect 122 // Enables demuxing of vp9 in mp4. Note that this flag will not have any effect
123 // if MP4 demuxing is not enabled in the build. 123 // if MP4 demuxing is not enabled in the build.
124 const char kEnableVp9InMp4[] = "enable-vp9-in-mp4"; 124 const char kEnableVp9InMp4[] = "enable-vp9-in-mp4";
125 125
126 // Force media player using SurfaceView instead of SurfaceTexture on Android.
127 const char kForceVideoOverlays[] = "force-video-overlays";
128
126 } // namespace switches 129 } // namespace switches
127 130
128 namespace media { 131 namespace media {
129 132
130 #if defined(ENABLE_PLUGINS) 133 #if defined(ENABLE_PLUGINS)
131 // Let flash join and be controlled by media session, only valid when 134 // Let flash join and be controlled by media session, only valid when
132 // |kEnableDefaultMediaSession| is on. 135 // |kEnableDefaultMediaSession| is on.
133 const base::Feature kFlashJoinsMediaSession{"flash-join-media-session", 136 const base::Feature kFlashJoinsMediaSession{"flash-join-media-session",
134 base::FEATURE_DISABLED_BY_DEFAULT}; 137 base::FEATURE_DISABLED_BY_DEFAULT};
135 #endif // defined(ENABLE_PLUGINS) 138 #endif // defined(ENABLE_PLUGINS)
136 139
137 // Use new audio rendering mixer. 140 // Use new audio rendering mixer.
138 const base::Feature kNewAudioRenderingMixingStrategy{ 141 const base::Feature kNewAudioRenderingMixingStrategy{
139 "NewAudioRenderingMixingStrategy", base::FEATURE_DISABLED_BY_DEFAULT}; 142 "NewAudioRenderingMixingStrategy", base::FEATURE_DISABLED_BY_DEFAULT};
140 143
141 // Use shared block-based buffering for media. 144 // Use shared block-based buffering for media.
142 const base::Feature kUseNewMediaCache{"use-new-media-cache", 145 const base::Feature kUseNewMediaCache{"use-new-media-cache",
143 base::FEATURE_ENABLED_BY_DEFAULT}; 146 base::FEATURE_ENABLED_BY_DEFAULT};
144 147
145 } // namespace media 148 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698