Commit 5df9d75b authored by Tianqiang Liu's avatar Tianqiang Liu Committed by Michael Niedermayer

avformat/mov: Add manu/modl to mov_read_udta_string.

Documentation: http://mp4ra.org/atoms.htmlSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 2238e54e
......@@ -336,6 +336,8 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
case MKTAG( 'l','d','e','s'): key = "synopsis"; break;
case MKTAG( 'l','o','c','i'):
return mov_metadata_loci(c, pb, atom.size);
case MKTAG( 'm','a','n','u'): key = "make"; break;
case MKTAG( 'm','o','d','l'): key = "model"; break;
case MKTAG( 'p','c','s','t'): key = "podcast";
parse = mov_metadata_int8_no_padding; break;
case MKTAG( 'p','g','a','p'): key = "gapless_playback";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment