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

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

Issue 1083383005: Connect the new video rendering path to the compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vra
Patch Set: Update LoginCustomFlags histogram. Created 5 years, 7 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
« no previous file with comments | « media/base/media_switches.h ('k') | media/base/null_video_sink.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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";
11 11
12 // Enables the new vsync driven video renderering path.
13 const char kEnableNewVideoRenderer[] = "enable-new-video-renderer";
14
12 // Set number of threads to use for video decoding. 15 // Set number of threads to use for video decoding.
13 const char kVideoThreads[] = "video-threads"; 16 const char kVideoThreads[] = "video-threads";
14 17
15 // Bypass autodetection of the upper limit on resolution of streams that can 18 // Bypass autodetection of the upper limit on resolution of streams that can
16 // be hardware decoded. 19 // be hardware decoded.
17 const char kIgnoreResolutionLimitsForAcceleratedVideoDecode[] = 20 const char kIgnoreResolutionLimitsForAcceleratedVideoDecode[] =
18 "ignore-resolution-limits-for-accelerated-video-decode"; 21 "ignore-resolution-limits-for-accelerated-video-decode";
19 22
20 #if defined(OS_ANDROID) 23 #if defined(OS_ANDROID)
21 // Disables the infobar popup for accessing protected media identifier. 24 // Disables the infobar popup for accessing protected media identifier.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // this flag will cause the tests to fail. Otherwise, they silently succeed. 113 // this flag will cause the tests to fail. Otherwise, they silently succeed.
111 const char kRequireAudioHardwareForTesting[] = 114 const char kRequireAudioHardwareForTesting[] =
112 "require-audio-hardware-for-testing"; 115 "require-audio-hardware-for-testing";
113 116
114 // Allows clients to override the threshold for when the media renderer will 117 // Allows clients to override the threshold for when the media renderer will
115 // declare the underflow state for the video stream when audio is present. 118 // declare the underflow state for the video stream when audio is present.
116 // TODO(dalecurtis): Remove once experiments for http://crbug.com/470940 finish. 119 // TODO(dalecurtis): Remove once experiments for http://crbug.com/470940 finish.
117 const char kVideoUnderflowThresholdMs[] = "video-underflow-threshold-ms"; 120 const char kVideoUnderflowThresholdMs[] = "video-underflow-threshold-ms";
118 121
119 } // namespace switches 122 } // namespace switches
OLDNEW
« no previous file with comments | « media/base/media_switches.h ('k') | media/base/null_video_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698