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

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

Issue 1399603003: Tie multibuffers to URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@media_cache
Patch Set: compile fixes Created 5 years, 2 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 "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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 // Allows clients to override the threshold for when the media renderer will 114 // 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. 115 // declare the underflow state for the video stream when audio is present.
116 // TODO(dalecurtis): Remove once experiments for http://crbug.com/470940 finish. 116 // TODO(dalecurtis): Remove once experiments for http://crbug.com/470940 finish.
117 const char kVideoUnderflowThresholdMs[] = "video-underflow-threshold-ms"; 117 const char kVideoUnderflowThresholdMs[] = "video-underflow-threshold-ms";
118 118
119 // Use the new rendering algorithm for webrtc, which is designed to improve 119 // Use the new rendering algorithm for webrtc, which is designed to improve
120 // smoothness. 120 // smoothness.
121 const char kEnableRTCSmoothnessAlgorithm[] = "enable-rtc-smoothness-algorithm"; 121 const char kEnableRTCSmoothnessAlgorithm[] = "enable-rtc-smoothness-algorithm";
122 122
123 // Use shared block-based buffering for media.
124 const char kMediaUseMultibuffer[] = "media-use-multibuffer";
125
123 } // namespace switches 126 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698