[FFmpeg-cvslog] avformat/dashdec: Increase size of id buffer

Andreas Rheinhardt git at videolan.org
Tue Mar 2 13:33:30 EET 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Tue Mar  2 11:34:07 2021 +0100| [98c5d6b845cb90918a00e589c2918498da5ed6e0] | committer: Andreas Rheinhardt

avformat/dashdec: Increase size of id buffer

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 at chinaffmpeg.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=98c5d6b845cb90918a00e589c2918498da5ed6e0
---

 libavformat/dashdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 3a12aefa68..6b43fd6278 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -82,7 +82,7 @@ struct representation {
     AVFormatContext *ctx;
     int stream_index;
 
-    char id[20];
+    char id[32];
     char *lang;
     int bandwidth;
     AVRational framerate;



More information about the ffmpeg-cvslog mailing list