diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-18 13:13:55 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-18 13:13:55 +0000 |
commit | c51ad71efaa975c64f6ad31dce5578307a5cba7b (patch) | |
tree | 348881ea4c5b04bd17e04e881905dbacef296869 /src/mp3_decode.h | |
parent | 6c24180516f823985f564ba013607b47f70afa81 (diff) | |
download | mpd-c51ad71efaa975c64f6ad31dce5578307a5cba7b.tar.gz mpd-c51ad71efaa975c64f6ad31dce5578307a5cba7b.tar.xz mpd-c51ad71efaa975c64f6ad31dce5578307a5cba7b.zip |
rework stuff so that we can use mime-type of streams to detect type of file
git-svn-id: https://svn.musicpd.org/mpd/trunk@1062 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mp3_decode.h')
-rw-r--r-- | src/mp3_decode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mp3_decode.h b/src/mp3_decode.h index c50df55c1..e33cd60c3 100644 --- a/src/mp3_decode.h +++ b/src/mp3_decode.h @@ -24,11 +24,12 @@ #ifdef HAVE_MAD #include "playerData.h" +#include "inputStream.h" /* this is primarily used in tag.c */ int getMp3TotalTime(char * file); -int mp3_decode(OutputBuffer * cb, DecoderControl * dc); +int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream); #endif |