diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2014-11-04 13:54:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-04 14:11:53 +0100 |
commit | dc351e1381900ead3288079f93f359161804d024 (patch) | |
tree | 8e13ef49bd55ac93877c95955b6f748cbc512023 /libavformat/id3v2.c | |
parent | 3dae05f4f7a8e9b2859acb3b6d8c13316ef318ef (diff) | |
download | ffmpeg-dc351e1381900ead3288079f93f359161804d024.tar.gz |
id3v2: prefer TDRC for date over TDRL.
TDRL is what we used as a replacement of TYER, and, according to
http://id3.org/id3v2.4.0-changes :
TYER - Year
This frame is replaced by the TDRC frame, 'Recording time'
[F:4.2.5].
So change TDRL usages to TDRC.
Fixes ticket #3694
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r-- | libavformat/id3v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 3e54620787..cbf43757fe 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -60,8 +60,8 @@ const AVMetadataConv ff_id3v2_34_metadata_conv[] = { const AVMetadataConv ff_id3v2_4_metadata_conv[] = { { "TCMP", "compilation" }, - { "TDRL", "date" }, { "TDRC", "date" }, + { "TDRL", "date" }, { "TDEN", "creation_time" }, { "TSOA", "album-sort" }, { "TSOP", "artist-sort" }, |