diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-27 03:39:20 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-27 04:08:00 +0100 |
commit | a06e84b56e936ff3ca090f53d81f9cbc3514e0e0 (patch) | |
tree | 7a924860a19025b0947d17c99549bb6d69bb58b5 | |
parent | ff5f4bd97654d9089b0d735178f8bfe122d8d49c (diff) | |
download | ffmpeg-a06e84b56e936ff3ca090f53d81f9cbc3514e0e0.tar.gz |
avformat/utils: Fix type mismatch
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index b1d0a0a477..345bbfe5fe 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -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; |