From 054c506e3da35471ea92dbedcaaf720d0754f04e Mon Sep 17 00:00:00 2001 From: Marek Fort <marek.fort@chyronhego.com> Date: Wed, 6 Aug 2014 16:48:21 +0200 Subject: [PATCH] avformat/mov: XMP metadata suppor. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- libavformat/mov.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index ab859181f5d..57977f3772e 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -318,6 +318,8 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) return mov_metadata_raw(c, pb, atom.size, "quicktime_version"); case MKTAG( 'l','o','c','i'): return mov_metadata_loci(c, pb, atom.size); + case MKTAG( 'X','M','P','_'): + return mov_metadata_raw(c, pb, atom.size, "xmp"); } if (c->itunes_metadata && atom.size > 8) { -- GitLab