From bd51c0138af2221e4bb0514b78ca23822c62a90e Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 22 Mar 2009 16:10:37 +0000 Subject: [PATCH] handle id3v2 'genre' tag formated as '%d' Originally committed as revision 18145 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mp3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/mp3.c b/libavformat/mp3.c index fa383d651..b032f0c09 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -198,7 +198,8 @@ static void id3v2_read_ttag(AVFormatContext *s, int taglen, const char *key) } if (!strcmp(key, "genre") - && sscanf(dst, "(%d)", &genre) == 1 && genre <= ID3v1_GENRE_MAX) + && (sscanf(dst, "(%d)", &genre) == 1 || sscanf(dst, "%d", &genre) == 1) + && genre <= ID3v1_GENRE_MAX) av_strlcpy(dst, id3v1_genre_str[genre], sizeof(dst)); if (*dst) -- 2.11.0