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

Unified Diff: media/audio/win/waveout_output_win.cc

Issue 10184011: Remove unused parameter "stream" from all variants of OnMoreData(). (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/win/audio_output_win_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/win/waveout_output_win.cc
===================================================================
--- media/audio/win/waveout_output_win.cc (revision 133451)
+++ media/audio/win/waveout_output_win.cc (working copy)
@@ -346,7 +346,7 @@
format_.Format.nChannels;
// TODO(sergeyu): Specify correct hardware delay for AudioBuffersState.
uint32 used = callback_->OnMoreData(
- this, reinterpret_cast<uint8*>(buffer->lpData), buffer_size_,
+ reinterpret_cast<uint8*>(buffer->lpData), buffer_size_,
AudioBuffersState(scaled_pending_bytes, 0));
if (used <= buffer_size_) {
buffer->dwBufferLength = used * format_.Format.nChannels / channels_;
« no previous file with comments | « media/audio/win/audio_output_win_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698