提交 3ca1dd25 编写于 作者: L Luca Barbato

xl: Make sure the width is valid

And undo the wrong commit f1cb490d

CC: libav-stable@libav.org
上级 0f51c398
...@@ -49,7 +49,12 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -49,7 +49,12 @@ static int decode_frame(AVCodecContext *avctx,
uint32_t val; uint32_t val;
int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0; int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
if (buf_size < avctx->width * avctx->height * sizeof(int32_t)) { if (avctx->width % 4) {
av_log(avctx, AV_LOG_ERROR, "Width not a multiple of 4.\n");
return AVERROR_INVALIDDATA;
}
if (buf_size < avctx->width * avctx->height) {
av_log(avctx, AV_LOG_ERROR, "Packet is too small\n"); av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册