OSDN Git Service

Add a closing LF to Webm-manifest files.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Tue, 16 Sep 2014 15:24:56 +0000 (17:24 +0200)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Tue, 16 Sep 2014 15:24:56 +0000 (17:24 +0200)
Fixes fate-webm-dash-manifest on AIX.

Reviewed-by: Nicolas George
libavformat/webmdashenc.c

index 77f6170..849b241 100644 (file)
@@ -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) {