1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

s/author/artist/ for ID3

from ffmbc

Originally committed as revision 20838 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-12-13 21:01:49 +00:00
parent 57f36fda56
commit 8a98be1a08
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ static int parse_tag(AVFormatContext *s, const uint8_t *buf)
buf[2] == 'G')) buf[2] == 'G'))
return -1; return -1;
get_string(s, "title", buf + 3, 30); get_string(s, "title", buf + 3, 30);
get_string(s, "author", buf + 33, 30); get_string(s, "artist", buf + 33, 30);
get_string(s, "album", buf + 63, 30); get_string(s, "album", buf + 63, 30);
get_string(s, "year", buf + 93, 4); get_string(s, "year", buf + 93, 4);
get_string(s, "comment", buf + 97, 30); get_string(s, "comment", buf + 97, 30);

View File

@ -241,7 +241,7 @@ const AVMetadataConv ff_id3v2_metadata_conv[] = {
{ "TENC", "encoder"}, { "TENC", "encoder"},
{ "TIT2", "title"}, { "TIT2", "title"},
{ "TLAN", "language"}, { "TLAN", "language"},
{ "TPE1", "author"}, { "TPE1", "artist"},
{ "TPOS", "disc"}, { "TPOS", "disc"},
{ "TPUB", "publisher"}, { "TPUB", "publisher"},
{ "TRCK", "track"}, { "TRCK", "track"},