mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
escape130: Check dimensions to be a multiple of the block size.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8ac6469575
commit
59d3656f6e
@ -43,6 +43,11 @@ static av_cold int escape130_decode_init(AVCodecContext *avctx)
|
|||||||
Escape130Context *s = avctx->priv_data;
|
Escape130Context *s = avctx->priv_data;
|
||||||
avctx->pix_fmt = PIX_FMT_YUV420P;
|
avctx->pix_fmt = PIX_FMT_YUV420P;
|
||||||
|
|
||||||
|
if((avctx->width&1) || (avctx->height&1)){
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Dimensions are not a multiple of the block size\n");
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
s->bases= av_malloc(avctx->width * avctx->height /4);
|
s->bases= av_malloc(avctx->width * avctx->height /4);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user