diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-06 16:42:14 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-06 16:42:14 +0000 |
commit | 4e53282469de4fea4b8daaec67298bd3394f34bd (patch) | |
tree | ba8465c48ea1c75983992ba4b265efd1666d9843 /src/decode.h | |
parent | 926258605a56c015d1421ca5aaf818a8de343afc (diff) | |
download | mpd-4e53282469de4fea4b8daaec67298bd3394f34bd.tar.gz mpd-4e53282469de4fea4b8daaec67298bd3394f34bd.tar.xz mpd-4e53282469de4fea4b8daaec67298bd3394f34bd.zip |
todo update
git-svn-id: https://svn.musicpd.org/mpd/trunk@1352 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.h')
-rw-r--r-- | src/decode.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/decode.h b/src/decode.h index a0c4332ba..4c2043b53 100644 --- a/src/decode.h +++ b/src/decode.h @@ -46,7 +46,7 @@ #define DECODE_SUFFIX_MP4 5 #define DECODE_SUFFIX_WAVE 6 -#define DECODE_METADATA_LENGTH 4096 +#define DECODE_METADATA_LENGTH 8192 typedef struct _DecoderControl { volatile mpd_sint8 state; @@ -61,18 +61,11 @@ typedef struct _DecoderControl { AudioFormat audioFormat; char utf8url[MAXPATHLEN+1]; volatile float totalTime; - volatile mpd_sint8 metadataSet; - char metadata[DECODE_METADATA_LENGTH]; - volatile mpd_sint16 title; - volatile mpd_sint16 artist; - volatile mpd_sint16 album; } DecoderControl; void decodeSigHandler(int sig); void decode(); -void copyMpdTagToDecoderControlMetadata(DecoderControl * dc, MpdTag * tag); - #endif /* vim:set shiftwidth=4 tabstop=8 expandtab: */ |