Chromium Code Reviews| Index: content/renderer/media/webaudio_capturer_source.cc |
| diff --git a/content/renderer/media/webaudio_capturer_source.cc b/content/renderer/media/webaudio_capturer_source.cc |
| index 0ab8dc360e605daf0fb3d6fba63fbacfd3084436..35cd99ce3b03d0b13d38672bf6b1c70b928fa223 100644 |
| --- a/content/renderer/media/webaudio_capturer_source.cc |
| +++ b/content/renderer/media/webaudio_capturer_source.cc |
| @@ -96,7 +96,7 @@ void WebAudioCapturerSource::consumeAudio( |
| int capture_frames = params_.frames_per_buffer(); |
| while (fifo_->frames() >= capture_frames) { |
| fifo_->Consume(capture_bus_.get(), 0, capture_frames); |
| - callback_->Capture(capture_bus_.get(), 0, 1.0); |
| + callback_->Capture(capture_bus_.get(), 0, 1.0, false); |
|
tommi (sloooow) - chröme
2013/08/06 10:57:47
Can you add a todo or some comment that explains t
jiayl
2013/08/06 17:24:11
I'm not sure I understand this...the current plan
|
| } |
| } |