diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-09-16 17:24:56 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-09-16 17:24:56 +0200 |
commit | 7c3ba1b83aebab68366e1fb333133a8e2a338019 (patch) | |
tree | 5ae8594ee68f68f1e02b663a35bb70e1eae00900 /libavformat | |
parent | d469aa8cfaa9ab6dceb9b8e5d072acc4b20aac8c (diff) | |
download | ffmpeg-7c3ba1b83aebab68366e1fb333133a8e2a338019.tar.gz |
Add a closing LF to Webm-manifest files.
Fixes fate-webm-dash-manifest on AIX.
Reviewed-by: Nicolas George
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/webmdashenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/webmdashenc.c b/libavformat/webmdashenc.c index 77f6170a26..849b241e52 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) { |