DEBUG message

git-svn-id: https://svn.musicpd.org/mpd/trunk@1571 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2004-06-19 21:31:53 +00:00
parent 0228a4a5ca
commit 7f15536683

View File

@ -230,7 +230,10 @@ static MpdTag * mp3_parseId3Tag(mp3DecodeData * data, signed long tagsize) {
else count += len; else count += len;
} }
if(count != tagsize) goto fail; if(count != tagsize) {
DEBUG("mp3_decode: error parsing ID3 tag\n");
goto fail;
}
id3_data = allocated; id3_data = allocated;
} }
@ -262,7 +265,9 @@ int decodeNextFrameHeader(mp3DecodeData * data, MpdTag ** tag) {
(data->stream).this_frame); (data->stream).this_frame);
if(tagsize>0) { if(tagsize>0) {
if(tag) *tag =mp3_parseId3Tag(data, tagsize); if(tag && !(*tag)) {
*tag =mp3_parseId3Tag(data, tagsize);
}
else { else {
mad_stream_skip(&(data->stream), mad_stream_skip(&(data->stream),
tagsize); tagsize);