You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cljr: return a more sensible value when encountering invalid headers
This commit is contained in:
@@ -61,7 +61,7 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
|
|
||||||
if(buf_size/avctx->height < avctx->width) {
|
if(buf_size/avctx->height < avctx->width) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
|
av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
|
||||||
return -1;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
p->reference= 0;
|
p->reference= 0;
|
||||||
|
Reference in New Issue
Block a user