diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-06 18:49:04 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-06 18:49:04 +0000 |
commit | ef9f832fb3ecc5c639387d9af71dcafbbed2ff70 (patch) | |
tree | e5bccdb95da646d9110995259ce00973cee017e9 /src/mp4_decode.h | |
parent | 9ca135d72381a04eacdd28d60701724c6f8d2a06 (diff) | |
download | mpd-ef9f832fb3ecc5c639387d9af71dcafbbed2ff70.tar.gz mpd-ef9f832fb3ecc5c639387d9af71dcafbbed2ff70.tar.xz mpd-ef9f832fb3ecc5c639387d9af71dcafbbed2ff70.zip |
mp4/aac now use InputStream
git-svn-id: https://svn.musicpd.org/mpd/trunk@925 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mp4_decode.h')
-rw-r--r-- | src/mp4_decode.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mp4_decode.h b/src/mp4_decode.h index 4028db453..0904dcc28 100644 --- a/src/mp4_decode.h +++ b/src/mp4_decode.h @@ -29,12 +29,14 @@ int mp4_getAACTrack(mp4ff_t *infile); -uint32_t mp4_readCallback(void *user_data, void *buffer, uint32_t length); - -uint32_t mp4_seekCallback(void *user_data, uint64_t position); - int mp4_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); +uint32_t mp4_inputStreamReadCallback(void *inStream, void *buffer, + uint32_t length); + +uint32_t mp4_inputStreamSeekCallback(void *inStream, uint64_t position); + + #endif /* HAVE_FAAD */ #endif |