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: content/shell/renderer/layout_test/layout_test_content_renderer_client.cc

Issue 2973763002: Revert of Make OS audio buffer size limits visible. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « content/renderer/media/renderer_webaudiodevice_impl.cc ('k') | media/BUILD.gn » ('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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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 "content/shell/renderer/layout_test/layout_test_content_renderer_client .h" 5 #include "content/shell/renderer/layout_test/layout_test_content_renderer_client .h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/debugger.h" 9 #include "base/debug/debugger.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 break; 210 break;
211 case blink::WebAudioLatencyHint::kCategoryBalanced: 211 case blink::WebAudioLatencyHint::kCategoryBalanced:
212 buffer_size = 212 buffer_size =
213 media::AudioLatency::GetRtcBufferSize(hw_sample_rate, hw_buffer_size); 213 media::AudioLatency::GetRtcBufferSize(hw_sample_rate, hw_buffer_size);
214 break; 214 break;
215 case blink::WebAudioLatencyHint::kCategoryPlayback: 215 case blink::WebAudioLatencyHint::kCategoryPlayback:
216 buffer_size = 216 buffer_size =
217 media::AudioLatency::GetHighLatencyBufferSize(hw_sample_rate, 0); 217 media::AudioLatency::GetHighLatencyBufferSize(hw_sample_rate, 0);
218 break; 218 break;
219 case blink::WebAudioLatencyHint::kCategoryExact: 219 case blink::WebAudioLatencyHint::kCategoryExact:
220 buffer_size = media::AudioLatency::GetExactBufferSize( 220 // TODO(andrew.macpherson@soundtrap.com): http://crbug.com/708917
221 base::TimeDelta::FromSecondsD(latency_hint.Seconds()), hw_sample_rate, 221 buffer_size = std::min(
222 hw_buffer_size); 222 4096, media::AudioLatency::GetExactBufferSize(
223 base::TimeDelta::FromSecondsD(latency_hint.Seconds()),
224 hw_sample_rate, hw_buffer_size));
223 break; 225 break;
224 default: 226 default:
225 NOTREACHED(); 227 NOTREACHED();
226 break; 228 break;
227 } 229 }
228 test_runner::WebTestInterfaces* interfaces = 230 test_runner::WebTestInterfaces* interfaces =
229 LayoutTestRenderThreadObserver::GetInstance()->test_interfaces(); 231 LayoutTestRenderThreadObserver::GetInstance()->test_interfaces();
230 return interfaces->CreateAudioDevice(hw_sample_rate, buffer_size); 232 return interfaces->CreateAudioDevice(hw_sample_rate, buffer_size);
231 } 233 }
232 234
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 switches::kStableReleaseMode)) { 268 switches::kStableReleaseMode)) {
267 blink::WebRuntimeFeatures::EnableTestOnlyFeatures(true); 269 blink::WebRuntimeFeatures::EnableTestOnlyFeatures(true);
268 } 270 }
269 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 271 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
270 switches::kEnableFontAntialiasing)) { 272 switches::kEnableFontAntialiasing)) {
271 blink::SetFontAntialiasingEnabledForTest(true); 273 blink::SetFontAntialiasingEnabledForTest(true);
272 } 274 }
273 } 275 }
274 276
275 } // namespace content 277 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/renderer_webaudiodevice_impl.cc ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698