Chromium Code Reviews

Unified Diff: media/filters/audio_renderer_impl.cc

Issue 357004: SetVolume and GetVolume take one volume instead of separate left and right vo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « media/audio/win/waveout_output_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_renderer_impl.cc
===================================================================
--- media/filters/audio_renderer_impl.cc (revision 30948)
+++ media/filters/audio_renderer_impl.cc (working copy)
@@ -47,7 +47,7 @@
void AudioRendererImpl::SetVolume(float volume) {
if (stream_)
- stream_->SetVolume(volume, volume);
+ stream_->SetVolume(volume);
}
size_t AudioRendererImpl::OnMoreData(AudioOutputStream* stream, void* dest_void,
« no previous file with comments | « media/audio/win/waveout_output_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine