Commit 020600ee authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeglsdec: ask for sample for "oversized image"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 375013e3
......@@ -114,7 +114,7 @@ int ff_jpegls_decode_lse(MJpegDecodeContext *s)
}
break;
case 4:
av_log(s->avctx, AV_LOG_ERROR, "oversize image not supported\n");
avpriv_request_sample(s->avctx, "oversize image");
return AVERROR(ENOSYS);
default:
av_log(s->avctx, AV_LOG_ERROR, "invalid id %d\n", id);
......
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