mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
mpc7: return error if packet is too small.
This commit is contained in:
parent
c8b5c4d274
commit
8290d1f38b
@ -203,6 +203,7 @@ static int mpc7_decode_frame(AVCodecContext * avctx,
|
||||
memset(bands, 0, sizeof(bands));
|
||||
if(buf_size <= 4){
|
||||
av_log(avctx, AV_LOG_ERROR, "Too small buffer passed (%i bytes)\n", buf_size);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
out_size = (buf[1] ? c->lastframelen : MPC_FRAME_SIZE) * 4;
|
||||
|
Loading…
Reference in New Issue
Block a user