diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/demuxers/id3.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ xine-lib (1.1.16) 2008-??-?? * Fix seeking FLV clips that don't specify the movie length in the headers. * Support H.264 and AAC streams within FLV. * Fix timing issues (broken audio) on mingw. + * Add ID3 tag TDRC to replace/complement the deprecated tag TYER. xine-lib (1.1.15) 2008-08-14 * Security fixes: diff --git a/src/demuxers/id3.c b/src/demuxers/id3.c index 3c03fdc68..ba8f50676 100644 --- a/src/demuxers/id3.c +++ b/src/demuxers/id3.c @@ -767,6 +767,7 @@ static int id3v24_interp_frame(input_plugin_t *input, break; case ( FOURCC_TAG('T', 'Y', 'E', 'R') ): + case ( FOURCC_TAG('T', 'D', 'R', 'C') ): _x_meta_info_set_generic(stream, XINE_META_INFO_YEAR, buf + 1, id3_encoding[enc]); break; |