diff options
author | Anton Khirnov | 2010-02-01 11:39:10 +0000 |
---|---|---|
committer | Peter Ross | 2010-02-01 11:39:10 +0000 |
commit | ca76a11948eaffd2667efa247cff0eb13889c043 (patch) | |
tree | 3e666ab791907a103b6a5c9f85d7bb6195b0fe67 /libavformat/oggparsevorbis.c | |
parent | b8bb398a40b1636de7a70131a45ddbc2944a242f (diff) |
Add a list of generic tags and change demuxers to follow it.
Patch by Anton Khirnov, wyskas at gmail dot com
Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r-- | libavformat/oggparsevorbis.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index 6222962019..2e8ea72129 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -36,8 +36,7 @@ * http://xiph.org/vorbis/doc/v-comment.html */ const AVMetadataConv ff_vorbiscomment_metadata_conv[] = { - { "ARTIST" , "author" }, - { "DATE" , "year" }, + { "ALBUMARTIST", "album_artist"}, { "TRACKNUMBER", "track" }, { 0 } }; |