Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-11-27 05:39:20 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-12-06 02:07:50 +0300
commitc165bad0c0730f700cbdd169870fc0b88c93ca66 (patch)
tree2dfd46d5604a384b7f93aadc8ed488a68df5436f /libavformat
parent16aa8c81469c3ea0be27c54e22d6aa7e58b94e66 (diff)
avformat/utils: Fix type mismatch
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit a06e84b56e936ff3ca090f53d81f9cbc3514e0e0) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 56646464b6..a89820d85e 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;