1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-09 09:16:59 +02:00

cljr: return a more sensible value when encountering invalid headers

This commit is contained in:
Diego Biurrun 2011-12-08 15:53:27 +01:00
parent 163682fab3
commit 1c45c64c9d

View File

@ -61,7 +61,7 @@ static int decode_frame(AVCodecContext *avctx,
if(buf_size/avctx->height < avctx->width) {
av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
return -1;
return AVERROR_INVALIDDATA;
}
p->reference= 0;