Skip to content

Commit

Permalink
music_mad.c: add FIXME note about handling Lyrics3 tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Dec 7, 2019
1 parent b26cfca commit 96d6865
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion music_mad.c
Expand Up @@ -243,6 +243,10 @@ static int skip_tags(mad_data *music)
/* FIXME: handle possible double-ID3v1 tags?? */
}

/* FIXME: handle Lyrics3 tags?
* http://id3.org/Lyrics3
* http://id3.org/Lyrics3v2 */

ape: /* APE tag may be at the end: read the footer */
if (music->length >= 32) {
MAD_RWseek(music, -32, RW_SEEK_END);
Expand All @@ -256,7 +260,6 @@ static int skip_tags(mad_data *music)
}
}

end:
return (music->length > 0)? 0: -1;
}

Expand Down

0 comments on commit 96d6865

Please sign in to comment.