Browse Source

cljr: Check if width and height are positive integers

Width and height might get passed as 0 and would cause floating point
exceptions in decode_frame.
Fixes bugzilla #149

Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n0.10
Shitiz Garg Janne Grunau 13 years ago
parent
commit
652d81b2c2
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/cljr.c

+ 5
- 0
libavcodec/cljr.c View File

@@ -57,6 +57,11 @@ static int decode_frame(AVCodecContext *avctx,
if (p->data[0])
avctx->release_buffer(avctx, p);

if (avctx->height <= 0 || avctx->width <= 0) {
av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
return AVERROR_INVALIDDATA;
}

if (buf_size / avctx->height < avctx->width) {
av_log(avctx, AV_LOG_ERROR,
"Resolution larger than buffer size. Invalid header?\n");


Loading…
Cancel
Save