aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-09-15 17:36:38 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-09-15 18:02:51 +0200
commitb290972b8ff82272d4905166f8f0cbb3a6c49ff8 (patch)
treeb663c23b159fae9c661875cea8165af8c2e51994 /libavformat/utils.c
parentc311713ca99cb0556609972ba60d3634dc96c7a0 (diff)
downloadffmpeg-b290972b8ff82272d4905166f8f0cbb3a6c49ff8.tar.gz
lavf: Switch probesize and max_analyze_duration to 64bit.
Both are only accessible through AVOptions.
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 96a1e8642a..0d68dee6c7 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3085,14 +3085,14 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
// new streams might appear, no options for those
int orig_nb_streams = ic->nb_streams;
int flush_codecs;
-#if FF_API_PROBESIZE_32
+#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI
int64_t max_analyze_duration = ic->max_analyze_duration2;
#else
int64_t max_analyze_duration = ic->max_analyze_duration;
#endif
int64_t max_stream_analyze_duration;
int64_t max_subtitle_analyze_duration;
-#if FF_API_PROBESIZE_32
+#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI
int64_t probesize = ic->probesize2;
#else
int64_t probesize = ic->probesize;