Skip to content
Snippets Groups Projects
Commit de0d3fe5 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/y41pdec: Avoid using float for size test


Floats are not bitexact

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 8952254f
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ static int y41p_decode_frame(AVCodecContext *avctx, void *data, ...@@ -43,7 +43,7 @@ static int y41p_decode_frame(AVCodecContext *avctx, void *data,
uint8_t *y, *u, *v; uint8_t *y, *u, *v;
int i, j, ret; int i, j, ret;
if (avpkt->size < 1.5 * avctx->height * avctx->width) { if (avpkt->size < 3LL * avctx->height * avctx->width / 2) {
av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n"); av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment