Commit 87cfe60a authored by michael's avatar michael

s/author/artist/ for ID3

from ffmbc


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20838 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ecdbd232
......@@ -209,7 +209,7 @@ static int parse_tag(AVFormatContext *s, const uint8_t *buf)
buf[2] == 'G'))
return -1;
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, "year", buf + 93, 4);
get_string(s, "comment", buf + 97, 30);
......
......@@ -241,7 +241,7 @@ const AVMetadataConv ff_id3v2_metadata_conv[] = {
{ "TENC", "encoder"},
{ "TIT2", "title"},
{ "TLAN", "language"},
{ "TPE1", "author"},
{ "TPE1", "artist"},
{ "TPOS", "disc"},
{ "TPUB", "publisher"},
{ "TRCK", "track"},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment