[FFmpeg-cvslog] avformat/mov: XMP metadata suppor.
Marek Fort
git at videolan.org
Thu Aug 7 20:19:42 CEST 2014
ffmpeg | branch: master | Marek Fort <marek.fort at chyronhego.com> | Wed Aug 6 16:48:21 2014 +0200| [054c506e3da35471ea92dbedcaaf720d0754f04e] | committer: Michael Niedermayer
avformat/mov: XMP metadata suppor.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=054c506e3da35471ea92dbedcaaf720d0754f04e
---
libavformat/mov.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index ab85918..57977f3 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) {
More information about the ffmpeg-cvslog
mailing list