aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl@dneg.com <Al@dneg.com>2012-07-09 10:40:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-07-09 15:30:59 +0200
commitc88a832735e3ea3eb30d5df8afbe408ce2e6be43 (patch)
tree327eaa5d180c06b320a1fb1740ec481cabd7d45e
parent36b2bd9629fac368b7752937753f74f28116b1f0 (diff)
downloadffmpeg-c88a832735e3ea3eb30d5df8afbe408ce2e6be43.tar.gz
movenc: Addtion of \251cmt field to udta
Allows support of comment in udta for libquicktime, also currently \251des is used which is ignored by mov.c. \251cmt IS currently already picked up by mov.c References libquicktime http://libquicktime.cvs.sourceforge.net/viewvc/libquicktime/libquicktime/src/udta.c?view=markup Also listed here: http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/QuickTime.html#UserData Not listed here, but that`s not entirely surprising, as udta fields are expected to be somewhat arbitary. http://developer.apple.com/library/mac/#documentation/QuickTime/qtff/QTFFChap2/qtff2.html#//apple_ref/doc/uid/TP40000939-CH204-BBCCFFGD Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/movenc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 89072d5ded..7ae6c45628 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -2078,7 +2078,10 @@ static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
mov_write_string_metadata(s, pb_buf, "\251alb", "album" , 0);
mov_write_string_metadata(s, pb_buf, "\251day", "date" , 0);
mov_write_string_metadata(s, pb_buf, "\251swr", "encoder" , 0);
+ // currently ignored by mov.c
mov_write_string_metadata(s, pb_buf, "\251des", "comment" , 0);
+ // add support for libquicktime, this atom is also actually read by mov.c
+ mov_write_string_metadata(s, pb_buf, "\251cmt", "comment" , 0);
mov_write_string_metadata(s, pb_buf, "\251gen", "genre" , 0);
mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright" , 0);
} else {