summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-31 17:41:29 +0100
committerwm4 <wm4@nowhere>2013-01-31 17:42:21 +0100
commit4a2e4b684a6f0a20578c73b76b8a2f300610acae (patch)
treeef86674b550c7523675103c332f133f4ba704a64 /stream
parentd4246353df6470e24d870dab8532a905e853601e (diff)
downloadmpv-4a2e4b684a6f0a20578c73b76b8a2f300610acae.tar.bz2
mpv-4a2e4b684a6f0a20578c73b76b8a2f300610acae.tar.xz
build: make it work on somewhat older ffmpeg versions
Tested with n0.10.4. All these version checks are rather tricky, because Libav and FFmpeg change the same thing at slightly different versions.
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index 2fa7764d44..4afdc7244d 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -189,7 +189,7 @@ static int open_f(stream_t *stream, int mode, void *opts, int *file_format)
goto out;
}
-#if LIBAVFORMAT_VERSION_MICRO >= 100
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(54, 0, 0)
if (avio->av_class) {
uint8_t *mt = NULL;
if (av_opt_get(avio, "mime_type", AV_OPT_SEARCH_CHILDREN, &mt) >= 0)