Commit de96e20b authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/lavfutils: call av_find_stream_info() before reading various information about the stream

No testcase with unmodified source is known
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2b4543ff
......@@ -44,6 +44,11 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
return ret;
}
if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
av_log(log_ctx, AV_LOG_ERROR, "Find stream info failed\n");
return ret;
}
codec_ctx = format_ctx->streams[0]->codec;
codec = avcodec_find_decoder(codec_ctx->codec_id);
if (!codec) {
......
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