diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-07 15:58:04 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-07 15:58:04 +0000 |
commit | 3794126e5609112d68a2e0c9cbae5a923da301b6 (patch) | |
tree | e44ad37c6b27f6f4a52b63c6c1057a860f93ff80 /src/mp4_decode.c | |
parent | 9196023f14acf37ee47ac7798029270476d7d3cb (diff) | |
download | mpd-3794126e5609112d68a2e0c9cbae5a923da301b6.tar.gz mpd-3794126e5609112d68a2e0c9cbae5a923da301b6.tar.xz mpd-3794126e5609112d68a2e0c9cbae5a923da301b6.zip |
new OutputBuffer abstraction stuff, implemented for mp3, now need to
implement in other decoders
git-svn-id: https://svn.musicpd.org/mpd/trunk@940 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mp4_decode.c')
-rw-r--r-- | src/mp4_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mp4_decode.c b/src/mp4_decode.c index b6cea1d62..e1faff837 100644 --- a/src/mp4_decode.c +++ b/src/mp4_decode.c @@ -84,7 +84,7 @@ uint32_t mp4_inputStreamSeekCallback(void *inStream, uint64_t position) { } -int mp4_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { +int mp4_decode(OutputBuffer * cb, AudioFormat * af, DecoderControl * dc) { mp4ff_t * mp4fh; mp4ff_callback_t * mp4cb; int32_t track; |