Commit 65f05eff authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/lavfutils/ff_load_image: Return error if no frame could be decoded

Based-on suggestion by JULIAN GARDNER <joolzg@btinternet.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 11aab8d6
......@@ -77,6 +77,8 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
ret = avcodec_decode_video2(codec_ctx, frame, &frame_decoded, &pkt);
if (ret < 0 || !frame_decoded) {
av_log(log_ctx, AV_LOG_ERROR, "Failed to decode image from file\n");
if (ret >= 0)
ret = -1;
goto end;
}
......
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