diff options
author | Raivo Hool <raivo.hool@gmail.com> | 2011-10-11 10:53:40 +0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-11 14:56:41 +0200 |
commit | 2804d320756dfd1d1927299f1c962699f4a39293 (patch) | |
tree | c767d3b4efc5dbaa1a59f161d935050b395cb2dc /libavformat/mov.c | |
parent | dff4177546ef78ef7f3a133cf27ecd72b693181d (diff) | |
download | ffmpeg-2804d320756dfd1d1927299f1c962699f4a39293.tar.gz |
mov: read album_artist atom
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index f6f95c29b2..9661149451 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -151,6 +151,7 @@ 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; |