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

Side by Side Diff: content/renderer/renderer_webaudiodevice_impl.cc

Issue 9234066: Detect errors in audio output and report them upstream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/renderer_webaudiodevice_impl.h ('k') | media/audio/linux/alsa_output.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/renderer/renderer_webaudiodevice_impl.h" 5 #include "content/renderer/renderer_webaudiodevice_impl.h"
6 6
7 using WebKit::WebAudioDevice; 7 using WebKit::WebAudioDevice;
8 using WebKit::WebVector; 8 using WebKit::WebVector;
9 9
10 RendererWebAudioDeviceImpl::RendererWebAudioDeviceImpl(size_t buffer_size, 10 RendererWebAudioDeviceImpl::RendererWebAudioDeviceImpl(size_t buffer_size,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 if (client_callback_) { 44 if (client_callback_) {
45 // Wrap the pointers using WebVector. 45 // Wrap the pointers using WebVector.
46 WebVector<float*> web_audio_data(audio_data.size()); 46 WebVector<float*> web_audio_data(audio_data.size());
47 for (size_t i = 0; i < audio_data.size(); ++i) 47 for (size_t i = 0; i < audio_data.size(); ++i)
48 web_audio_data[i] = audio_data[i]; 48 web_audio_data[i] = audio_data[i];
49 49
50 client_callback_->render(web_audio_data, number_of_frames); 50 client_callback_->render(web_audio_data, number_of_frames);
51 } 51 }
52 return number_of_frames; 52 return number_of_frames;
53 } 53 }
54
55 void RendererWebAudioDeviceImpl::OnError() {
56 // TODO(crogers): implement error handling.
57 }
OLDNEW
« no previous file with comments | « content/renderer/renderer_webaudiodevice_impl.h ('k') | media/audio/linux/alsa_output.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698