Commit a06e84b5 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/utils: Fix type mismatch

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ff5f4bd9
......@@ -3361,7 +3361,7 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
int64_t max_subtitle_analyze_duration;
int64_t probesize = ic->probesize;
int eof_reached = 0;
int64_t *missing_streams = av_opt_ptr(ic->iformat->priv_class, ic->priv_data, "missing_streams");
int *missing_streams = av_opt_ptr(ic->iformat->priv_class, ic->priv_data, "missing_streams");
flush_codecs = probesize > 0;
......
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