diff options
author | dalecurtis@chromium.org <dalecurtis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-01 04:52:47 +0000 |
---|---|---|
committer | dalecurtis@chromium.org <dalecurtis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-01 04:52:47 +0000 |
commit | 71ec3203561e97c3cde5acb59a5229efcfe3e881 (patch) | |
tree | 38160062fede6bbd3a6574f7988796948986ea1c /media/audio/audio_util.h | |
parent | 3a85b1f23e82eff120d6f7d28e94fbd85a3c7dc2 (diff) | |
download | chromium_src-71ec3203561e97c3cde5acb59a5229efcfe3e881.zip chromium_src-71ec3203561e97c3cde5acb59a5229efcfe3e881.tar.gz chromium_src-71ec3203561e97c3cde5acb59a5229efcfe3e881.tar.bz2 |
Delete AudioOutputMixer.
Not used. If we do enable browser side mixing in the future it'll
be based on AudioConverter. With renderer side mixing and
AudioOutputProxy, there's not a pressing need for this function.
BUG=none
TEST=compile
Review URL: https://chromiumcodereview.appspot.com/12082111
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/audio_util.h')
-rw-r--r-- | media/audio/audio_util.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/media/audio/audio_util.h b/media/audio/audio_util.h index 18cda41..6067b21 100644 --- a/media/audio/audio_util.h +++ b/media/audio/audio_util.h @@ -39,15 +39,6 @@ MEDIA_EXPORT bool AdjustVolume(void* buf, int bytes_per_sample, float volume); -// MixStreams() mixes 2 audio streams with same sample rate and number of -// samples, adjusting volume on one of them. -// Dst += Src * volume. -MEDIA_EXPORT void MixStreams(void* dst, - void* src, - size_t buflen, - int bytes_per_sample, - float volume); - // Returns the default audio output hardware sample-rate. MEDIA_EXPORT int GetAudioHardwareSampleRate(); |