diff id3v2.c @ 5236:1403c88b1ce7 libavformat

Add id3v2 metadata conversion table and use it in mp3 muxer. Patch by Anton Khirnov, wyskas gmail
author cehoyos
date Tue, 29 Sep 2009 07:05:03 +0000
parents d2e3bc991df4
children 323fc801aa57
line wrap: on
line diff
--- a/id3v2.c	Sat Sep 26 21:06:18 2009 +0000
+++ b/id3v2.c	Tue Sep 29 07:05:03 2009 +0000
@@ -242,3 +242,22 @@
     av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason);
     url_fskip(s->pb, len);
 }
+
+const AVMetadataConv ff_id3v2_metadata_conv[] = {
+    { "TALB", "album"},
+    { "TCOM", "composer"},
+    { "TCON", "genre"},
+    { "TCOP", "copyright"},
+    { "TDRL", "date"},
+    { "TENC", "encoder"},
+    { "TIT2", "title"},
+    { "TLAN", "language"},
+    { "TPE1", "author"},
+    { "TPOS", "disc"},
+    { "TPUB", "publisher"},
+    { "TRCK", "track"},
+    { "TSOA", "albumsort"},
+    { "TSOP", "authorsort"},
+    { "TSOT", "titlesort"},
+    { 0 }
+};