summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.c
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-10-05 16:06:00 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-10-05 16:06:00 +0000
commit078d89a2b0a328216cd799ebf3044b02354430fd (patch)
tree0ad9b628773150de2d343d8882ab2f2a4a871fcb /libavformat/id3v2.c
parent79c0790789668f07e414eb1205ddffa9fd8236f0 (diff)
MP3 muxer: Write all metadata.
Patch by Anton Khirnov <wyskas at gmail dot com> Originally committed as revision 20170 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r--libavformat/id3v2.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index 651c8fc613..ceb1a8bf84 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -261,3 +261,12 @@ const AVMetadataConv ff_id3v2_metadata_conv[] = {
{ "TSOT", "titlesort"},
{ 0 }
};
+
+const char ff_id3v2_tags[][4] = {
+ "TALB", "TBPM", "TCOM", "TCON", "TCOP", "TDEN", "TDLY", "TDOR", "TDRC",
+ "TDRL", "TDTG", "TENC", "TEXT", "TFLT", "TIPL", "TIT1", "TIT2", "TIT3",
+ "TKEY", "TLAN", "TLEN", "TMCL", "TMED", "TMOO", "TOAL", "TOFN", "TOLY",
+ "TOPE", "TOWN", "TPE1", "TPE2", "TPE3", "TPE4", "TPOS", "TPRO", "TPUB",
+ "TRCK", "TRSN", "TRSO", "TSOA", "TSOP", "TSOT", "TSRC", "TSSE", "TSST",
+ { 0 },
+};