diff options
author | Peter Ross <pross@xvid.org> | 2014-03-15 12:26:22 +1100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-15 04:29:19 +0100 |
commit | 847d8af59af5925fb4310256bd63bc54d9cee7b5 (patch) | |
tree | 52ba0bfb471d115ebf63ce8deb213d063b454049 /libavformat | |
parent | ac9bfb1fafde15d7605869b2ed4b8d7af9317a8d (diff) | |
download | ffmpeg-847d8af59af5925fb4310256bd63bc54d9cee7b5.tar.gz |
avformat/id3v2: decode compilation metadata
Described http://id3.org/iTunes%20Compilation%20Flag
Signed-off-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/id3v2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 3cd23c675a..8a8989b438 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -59,6 +59,7 @@ const AVMetadataConv ff_id3v2_34_metadata_conv[] = { }; const AVMetadataConv ff_id3v2_4_metadata_conv[] = { + { "TCMP", "compilation" }, { "TDRL", "date" }, { "TDRC", "date" }, { "TDEN", "creation_time" }, @@ -71,6 +72,7 @@ const AVMetadataConv ff_id3v2_4_metadata_conv[] = { static const AVMetadataConv id3v2_2_metadata_conv[] = { { "TAL", "album" }, { "TCO", "genre" }, + { "TCP", "compilation" }, { "TT2", "title" }, { "TEN", "encoded_by" }, { "TP1", "artist" }, |