[FFmpeg-cvslog] r20838 - in trunk/libavformat: id3v1.c id3v2.c
michael
subversion
Sun Dec 13 22:01:50 CET 2009
Author: michael
Date: Sun Dec 13 22:01:49 2009
New Revision: 20838
Log:
s/author/artist/ for ID3
from ffmbc
Modified:
trunk/libavformat/id3v1.c
trunk/libavformat/id3v2.c
Modified: trunk/libavformat/id3v1.c
==============================================================================
--- trunk/libavformat/id3v1.c Sun Dec 13 21:51:38 2009 (r20837)
+++ trunk/libavformat/id3v1.c Sun Dec 13 22:01:49 2009 (r20838)
@@ -209,7 +209,7 @@ static int parse_tag(AVFormatContext *s,
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);
Modified: trunk/libavformat/id3v2.c
==============================================================================
--- trunk/libavformat/id3v2.c Sun Dec 13 21:51:38 2009 (r20837)
+++ trunk/libavformat/id3v2.c Sun Dec 13 22:01:49 2009 (r20838)
@@ -241,7 +241,7 @@ const AVMetadataConv ff_id3v2_metadata_c
{ "TENC", "encoder"},
{ "TIT2", "title"},
{ "TLAN", "language"},
- { "TPE1", "author"},
+ { "TPE1", "artist"},
{ "TPOS", "disc"},
{ "TPUB", "publisher"},
{ "TRCK", "track"},
More information about the ffmpeg-cvslog
mailing list