]> git.sesse.net Git - ffmpeg/commitdiff
avformat/movenc: omit avformat ident from isml_manifest for bitexact mode
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Mar 2014 15:34:46 +0000 (16:34 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 16 Mar 2014 15:34:46 +0000 (16:34 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/movenc.c

index 6c928be71472102fbbc3cb0b59d8f1c63602c2a6..899fdb6a097513e451d001345938d884002252d8 100644 (file)
@@ -2566,7 +2566,8 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov)
     avio_printf(pb, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
     avio_printf(pb, "<smil xmlns=\"http://www.w3.org/2001/SMIL20/Language\">\n");
     avio_printf(pb, "<head>\n");
-    avio_printf(pb, "<meta name=\"creator\" content=\"%s\" />\n",
+    if (!mov->exact)
+        avio_printf(pb, "<meta name=\"creator\" content=\"%s\" />\n",
                     LIBAVFORMAT_IDENT);
     avio_printf(pb, "</head>\n");
     avio_printf(pb, "<body>\n");