diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-01 11:18:25 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-01 11:18:25 +0000 |
commit | fe0b751c8278ab07a350cd4d363743b734f4f830 (patch) | |
tree | 288ce38c0401ed60f416da239c94654df4413657 /src/decode.h | |
parent | 187eba5754ddc99f5105fe2edac9c817fd2f7561 (diff) | |
download | mpd-fe0b751c8278ab07a350cd4d363743b734f4f830.tar.gz mpd-fe0b751c8278ab07a350cd4d363743b734f4f830.tar.xz mpd-fe0b751c8278ab07a350cd4d363743b734f4f830.zip |
ogg voribs comment parsing on the fly in the decoder
git-svn-id: https://svn.musicpd.org/mpd/trunk@1279 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/decode.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decode.h b/src/decode.h index fbd2fbbb2..a0c4332ba 100644 --- a/src/decode.h +++ b/src/decode.h @@ -20,6 +20,7 @@ #define DECODE_H #include "../config.h" +#include "tag.h" #include "mpd_types.h" #include "audio.h" @@ -63,11 +64,15 @@ typedef struct _DecoderControl { 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: */ |