From 9fc45b313c3785b6e710c9cdf89d7d1507a577ea Mon Sep 17 00:00:00 2001 From: James Almer Date: Sun, 10 May 2015 03:31:44 -0300 Subject: [PATCH] dashenc: replace attribute id with contentType for the AdaptationSet element id should be an integer, not a string. It is also optional, so use contentType instead which is the proper attribute for these values. This addresses ticket #4545, fixing an MPD validation error. Signed-off-by: James Almer Signed-off-by: Michael Niedermayer (cherry picked from commit 32a4177a627ddce984a5a9ed7023d9a63dcbdf85) --- libavformat/dashenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 92b7d6c773..0c75713412 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -494,7 +494,7 @@ static int write_manifest(AVFormatContext *s, int final) } if (c->has_video) { - avio_printf(out, "\t\t\n"); + avio_printf(out, "\t\t\n"); for (i = 0; i < s->nb_streams; i++) { AVStream *st = s->streams[i]; OutputStream *os = &c->streams[i]; @@ -509,7 +509,7 @@ static int write_manifest(AVFormatContext *s, int final) avio_printf(out, "\t\t\n"); } if (c->has_audio) { - avio_printf(out, "\t\t\n"); + avio_printf(out, "\t\t\n"); for (i = 0; i < s->nb_streams; i++) { AVStream *st = s->streams[i]; OutputStream *os = &c->streams[i];