1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

A size of 32 is typically used.
This commit is contained in:
Carl Eugen Hoyos
2016-10-18 14:53:30 +02:00
parent 258c49d614
commit c0e2846dcd

View File

@@ -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)