Commit c0e2846d authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavc/sheervideo: Increase av_get_codec_tag_string() input buffer size.

A size of 32 is typically used.
parent 258c49d6
...@@ -2879,7 +2879,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -2879,7 +2879,7 @@ static int decode_frame(AVCodecContext *avctx,
AVFrame *p = data; AVFrame *p = data;
GetBitContext gb; GetBitContext gb;
unsigned format; unsigned format;
char format_str[16]; char format_str[32];
int ret; int ret;
if (avpkt->size <= 20) if (avpkt->size <= 20)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment