[FFmpeg-cvslog] Add a closing LF to Webm-manifest files.

Carl Eugen Hoyos git at videolan.org
Tue Sep 16 18:57:48 CEST 2014


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Sep 16 17:24:56 2014 +0200| [7c3ba1b83aebab68366e1fb333133a8e2a338019] | committer: Carl Eugen Hoyos

Add a closing LF to Webm-manifest files.

Fixes fate-webm-dash-manifest on AIX.

Reviewed-by: Nicolas George

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7c3ba1b83aebab68366e1fb333133a8e2a338019
---

 libavformat/webmdashenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c
index 77f6170..849b241 100644
--- a/libavformat/webmdashenc.c
+++ b/libavformat/webmdashenc.c
@@ -95,7 +95,7 @@ static void write_header(AVFormatContext *s)
 
 static void write_footer(AVFormatContext *s)
 {
-    avio_printf(s->pb, "</MPD>");
+    avio_printf(s->pb, "</MPD>\n");
 }
 
 static int subsegment_alignment(AVFormatContext *s, AdaptationSet *as) {



More information about the ffmpeg-cvslog mailing list