diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 23:24:06 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 23:24:06 +0000 |
commit | 5eeac1bcc47ac153d533e0cde502bb568b1a651c (patch) | |
tree | 55455537def46c1adb55aeed76cda1c042511863 /media/audio/audio_util.h | |
parent | 1ae9e42856ccffaaeafef3d9c5459e3d2457f05f (diff) | |
download | chromium_src-5eeac1bcc47ac153d533e0cde502bb568b1a651c.zip chromium_src-5eeac1bcc47ac153d533e0cde502bb568b1a651c.tar.gz chromium_src-5eeac1bcc47ac153d533e0cde502bb568b1a651c.tar.bz2 |
Fix link error with components build and media.dll. I have no idea why the bots aren't seeing this, it might be an interaction with supalink.
Review URL: http://codereview.chromium.org/7785013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98879 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/audio_util.h')
-rw-r--r-- | media/audio/audio_util.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media/audio/audio_util.h b/media/audio/audio_util.h index d95a646..ff8f2f0 100644 --- a/media/audio/audio_util.h +++ b/media/audio/audio_util.h @@ -62,12 +62,12 @@ MEDIA_EXPORT bool FoldChannels(void* buf, // puts it in the floating point |destination|. // It returns |true| on success, or |false| if the |sample_fmt| is // not recognized. -bool DeinterleaveAudioChannel(void* source, - float* destination, - int channels, - int channel_index, - int bytes_per_sample, - size_t number_of_frames); +MEDIA_EXPORT bool DeinterleaveAudioChannel(void* source, + float* destination, + int channels, + int channel_index, + int bytes_per_sample, + size_t number_of_frames); // InterleaveFloatToInt16 scales, clips, and interleaves the planar // floating-point audio contained in |source| to the int16 |destination|. |