diff options
author | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 20:11:04 +0000 |
---|---|---|
committer | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 20:11:04 +0000 |
commit | d3dd31fb151f067389f3423ee6de09f8c5251ed9 (patch) | |
tree | 9d71cc5598bdfad7b3c0b7398002c5f4895ad1a1 /media/audio/win/waveout_output_win.cc | |
parent | 1ff23609a28bf25c97219b29e1ca3ca5b0d5c699 (diff) | |
download | chromium_src-d3dd31fb151f067389f3423ee6de09f8c5251ed9.zip chromium_src-d3dd31fb151f067389f3423ee6de09f8c5251ed9.tar.gz chromium_src-d3dd31fb151f067389f3423ee6de09f8c5251ed9.tar.bz2 |
Rename a header and some methods to make way for subsequent audio recording additions.
Renaming audio_output.h to audio_io.h as future patches will add audio recording code to this file.
Also renamed a couple of methods to make it clear that these are for audio playback/output and similar methods will be added for audio capture/recording soon.
BUG=none
TEST=no change in functionality.
Review URL: http://codereview.chromium.org/2962006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52125 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/win/waveout_output_win.cc')
-rw-r--r-- | media/audio/win/waveout_output_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/audio/win/waveout_output_win.cc b/media/audio/win/waveout_output_win.cc index 59f4c1c..cbd0ddc 100644 --- a/media/audio/win/waveout_output_win.cc +++ b/media/audio/win/waveout_output_win.cc @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/logging.h" -#include "media/audio/audio_output.h" +#include "media/audio/audio_io.h" #include "media/audio/audio_util.h" #include "media/audio/win/audio_manager_win.h" @@ -209,7 +209,7 @@ void PCMWaveOutAudioOutputStream::Close() { // Tell the audio manager that we have been released. This can result in // the manager destroying us in-place so this needs to be the last thing // we do on this function. - manager_->ReleaseStream(this); + manager_->ReleaseOutputStream(this); } void PCMWaveOutAudioOutputStream::SetVolume(double volume) { |