Mercurial > libavformat.hg
changeset 1296:654749c12a29 libavformat
Better tag support:
- Make ffplay show comments and copyright info besides the current track, title, author, album, year and genre.
- Makes the AVI demuxer parse the album name stores in the IPRD tag by the AVI muxer.
Patch by takis P issaris A uhasselt P be
Original thread:
[Ffmpeg-devel] [PATCH] Better tag support
Date: 09/06/06 16:58
author | gpoirier |
---|---|
date | Thu, 07 Sep 2006 08:09:15 +0000 |
parents | d2c766bc1b50 |
children | f63d2066f478 |
files | avidec.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/avidec.c Wed Sep 06 09:00:11 2006 +0000 +++ b/avidec.c Thu Sep 07 08:09:15 2006 +0000 @@ -476,6 +476,9 @@ case MKTAG('I', 'G', 'N', 'R'): avi_read_tag(pb, s->genre, sizeof(s->genre), size); break; + case MKTAG('I', 'P', 'R', 'D'): + avi_read_tag(pb, s->album, sizeof(s->album), size); + break; default: /* skip tag */ size += (size & 1);