summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-02 11:34:07 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-02 11:49:28 +0100
commit98c5d6b845cb90918a00e589c2918498da5ed6e0 (patch)
treec9831413f3f836cd5331f1bbd540fcb037b04a6b /libavformat
parentec5663d0a796cb8acde8ad04ac4cc7e2be7d5173 (diff)
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@chinaffmpeg.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/dashdec.c2
1 files changed, 1 insertions, 1 deletions
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;