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
1 changed files with 1 additions and 1 deletions

View File

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