diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-04-24 17:02:09 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-04-30 11:02:49 +0200 |
commit | 543f3db9784348499a1ac1088373e2fb9100d4c0 (patch) | |
tree | 32998320817ff13b25eabecacc68bd405b41dd97 /libavformat/mov.c | |
parent | 97dc86b793efb9c6ac604cdfff4027fe27efa12c (diff) | |
download | ffmpeg-543f3db9784348499a1ac1088373e2fb9100d4c0.tar.gz |
Read the album_artist, grouping and lyrics metadata.
Our muxer writes these out, so we really should support reading them.
Fixes ticket #30.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 8bb3580333..fcb27359c4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -144,9 +144,12 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) case MKTAG(0xa9,'n','a','m'): key = "title"; break; case MKTAG(0xa9,'a','u','t'): case MKTAG(0xa9,'A','R','T'): key = "artist"; break; + case MKTAG( 'a','A','R','T'): key = "album_artist";break; case MKTAG(0xa9,'w','r','t'): key = "composer"; break; case MKTAG( 'c','p','r','t'): case MKTAG(0xa9,'c','p','y'): key = "copyright"; break; + case MKTAG(0xa9,'g','r','p'): key = "grouping"; break; + case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break; case MKTAG(0xa9,'c','m','t'): case MKTAG(0xa9,'i','n','f'): key = "comment"; break; case MKTAG(0xa9,'a','l','b'): key = "album"; break; |