summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMarek Fort <marek.fort@chyronhego.com>2014-08-06 16:48:21 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-07 20:11:09 +0200
commit054c506e3da35471ea92dbedcaaf720d0754f04e (patch)
treec4b278adf04f07db6e4850d8b8a67f132b77853b /libavformat
parent06362ab7509eb0fc3587067ff4b5416f11a87933 (diff)
avformat/mov: XMP metadata suppor.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index ab859181f5..57977f3772 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) {