Commit 52b6db84 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'cehoyos/master'

* cehoyos/master:
  Decode png images without iend chunk.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 61f96be0 666749f6
...@@ -546,6 +546,9 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -546,6 +546,9 @@ static int decode_frame(AVCodecContext *avctx,
for (;;) { for (;;) {
if (bytestream2_get_bytes_left(&s->gb) <= 0) { if (bytestream2_get_bytes_left(&s->gb) <= 0) {
av_log(avctx, AV_LOG_ERROR, "No bytes left\n"); av_log(avctx, AV_LOG_ERROR, "No bytes left\n");
if ( s->state & PNG_ALLIMAGE
&& avctx->strict_std_compliance <= FF_COMPLIANCE_NORMAL)
goto exit_loop;
goto fail; goto fail;
} }
......
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