]> git.sesse.net Git - ffmpeg/commitdiff
avformat/dashdec: Increase size of id buffer
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 2 Mar 2021 10:34:07 +0000 (11:34 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 2 Mar 2021 10:49:28 +0000 (11:49 +0100)
The current size is not enough, see e.g.
http://ftp.itec.aau.at/datasets/DASHDataset2014/TearsOfSteel/1sec/TearsOfSteel_1s_simple_2014_05_09.mpd

Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/dashdec.c

index 3a12aefa681e57d63844907bb3bbe273eb0db772..6b43fd6278b4b38472d78e7ef4a8d7c621605cd0 100644 (file)
@@ -82,7 +82,7 @@ struct representation {
     AVFormatContext *ctx;
     int stream_index;
 
-    char id[20];
+    char id[32];
     char *lang;
     int bandwidth;
     AVRational framerate;