Browse Source

Add a closing LF to Webm-manifest files.

Fixes fate-webm-dash-manifest on AIX.

Reviewed-by: Nicolas George
tags/n2.5
Carl Eugen Hoyos 11 years ago
parent
commit
7c3ba1b83a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/webmdashenc.c

+ 1
- 1
libavformat/webmdashenc.c View 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) {


Loading…
Cancel
Save