diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-10-18 14:53:30 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-10-20 09:55:52 +0200 |
commit | c0e2846dcdc1a29de1c78886f5b7a05a252779e4 (patch) | |
tree | 028cf8d24aa0be061bb42d5d908a4ebe1ddf06b4 | |
parent | 258c49d61451236e28a34265195481ef8f00d968 (diff) | |
download | ffmpeg-c0e2846dcdc1a29de1c78886f5b7a05a252779e4.tar.gz |
lavc/sheervideo: Increase av_get_codec_tag_string() input buffer size.
A size of 32 is typically used.
-rw-r--r-- | libavcodec/sheervideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sheervideo.c b/libavcodec/sheervideo.c index f8490c916a..e8f008b7e4 100644 --- a/libavcodec/sheervideo.c +++ b/libavcodec/sheervideo.c @@ -2879,7 +2879,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *p = data; GetBitContext gb; unsigned format; - char format_str[16]; + char format_str[32]; int ret; if (avpkt->size <= 20) |