Commit 7c7441b3 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/roqvideoenc: check dimensions against maximum

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fe4c76b3
......@@ -972,6 +972,11 @@ static av_cold int roq_encode_init(AVCodecContext *avctx)
return AVERROR(EINVAL);
}
if (avctx->width > 65535 || avctx->height > 65535) {
av_log(avctx, AV_LOG_ERROR, "Dimensions are max 32768\n");
return AVERROR(EINVAL);
}
if (((avctx->width)&(avctx->width-1))||((avctx->height)&(avctx->height-1)))
av_log(avctx, AV_LOG_ERROR, "Warning: dimensions not power of two\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment