1
0
mirror of http://mpg123.de/trunk/.git synced 2025-08-06 10:02:38 +03:00

Also print out description for generic text fields.

git-svn-id: svn://scm.orgis.org/mpg123/trunk@3087 35dc7657-300d-0410-a2e5-dc2837fedb53
This commit is contained in:
thor
2012-04-06 17:04:09 +00:00
parent 5afce2210b
commit faedf546b4

View File

@@ -99,7 +99,10 @@ void print_raw_v2(mpg123_id3v2 *v2)
id[4] = 0; id[4] = 0;
memcpy(lang, v2->text[i].lang, 3); memcpy(lang, v2->text[i].lang, 3);
lang[3] = 0; lang[3] = 0;
printf("%s language(%s)\n", id, lang); if(v2->text[i].description.fill)
printf("%s language(%s) description(%s)\n", id, lang, v2->text[i].description.p);
else printf("%s language(%s)\n", id, lang);
print_lines(" ", &v2->text[i].text); print_lines(" ", &v2->text[i].text);
} }
for(i=0; i<v2->extras; ++i) for(i=0; i<v2->extras; ++i)