diff options
author | Xidorn Quan <quanxunzhen@gmail.com> | 2012-11-15 22:40:23 +0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-16 14:12:37 +0100 |
commit | 8ee6db393c92d13db7929d7941a0570f7a6ba87b (patch) | |
tree | b0237ac5c3e472fbffe7eed40e65da2b0e98393e /libavformat/mov.c | |
parent | 2dd0da787ce5008d4d1b8f461fbd1288c32e2c38 (diff) | |
download | ffmpeg-8ee6db393c92d13db7929d7941a0570f7a6ba87b.tar.gz |
mov: add more udta meta data recognition
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 73077eeac2..9b179cbc85 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -312,6 +312,9 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) case MKTAG(0xa9,'t','o','o'): case MKTAG(0xa9,'s','w','r'): key = "encoder"; break; case MKTAG(0xa9,'e','n','c'): key = "encoder"; break; + case MKTAG(0xa9,'m','a','k'): key = "make"; break; + case MKTAG(0xa9,'m','o','d'): key = "model"; break; + case MKTAG(0xa9,'x','y','z'): key = "location"; break; case MKTAG( 'd','e','s','c'): key = "description";break; case MKTAG( 'l','d','e','s'): key = "synopsis"; break; case MKTAG( 't','v','s','h'): key = "show"; break; |