Hi,

On Sun, 10 May 2015, James Almer wrote:

id should be an integer, not a string. It is also optional, so use
contentType instead which is the proper attribute for these values.

I don't see anything in ISO/IEC 23009-1/2014 about id needing to be an integer - can you clarify where that requirement comes from? Otherwise we could scrap/reformulate this part of the commit message.

This fixes an MPD validation error.

Signed-off-by: James Almer <[email protected]>
---
libavformat/dashenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index fc5c823..f228b86 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -503,7 +503,7 @@ static int write_manifest(AVFormatContext *s, int final)
    }

    if (c->has_video) {
-        avio_printf(out, "\t\t<AdaptationSet id=\"video\" segmentAlignment=\"true\" 
bitstreamSwitching=\"true\">\n");
+        avio_printf(out, "\t\t<AdaptationSet contentType=\"video\" segmentAlignment=\"true\" 
bitstreamSwitching=\"true\">\n");
        for (i = 0; i < s->nb_streams; i++) {
            AVStream *st = s->streams[i];
            OutputStream *os = &c->streams[i];
@@ -516,7 +516,7 @@ static int write_manifest(AVFormatContext *s, int final)
        avio_printf(out, "\t\t</AdaptationSet>\n");
    }
    if (c->has_audio) {
-        avio_printf(out, "\t\t<AdaptationSet id=\"audio\" segmentAlignment=\"true\" 
bitstreamSwitching=\"true\">\n");
+        avio_printf(out, "\t\t<AdaptationSet contentType=\"audio\" segmentAlignment=\"true\" 
bitstreamSwitching=\"true\">\n");
        for (i = 0; i < s->nb_streams; i++) {
            AVStream *st = s->streams[i];
            OutputStream *os = &c->streams[i];
--
2.4.0

The patch itself is fine though - thanks!

// Martin
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to