[FFmpeg-cvslog] avformat/movenc: omit avformat ident from isml_manifest for bitexact mode
Michael Niedermayer
git at videolan.org
Sun Mar 16 17:16:27 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Mar 16 16:34:46 2014 +0100| [9b1d264e87440fafdedbf1b6cec525892faa12d9] | committer: Michael Niedermayer
avformat/movenc: omit avformat ident from isml_manifest for bitexact mode
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9b1d264e87440fafdedbf1b6cec525892faa12d9
---
libavformat/movenc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 6c928be..899fdb6 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -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");
More information about the ffmpeg-cvslog
mailing list