Mark ffmpeg as not required
authorThibault Saunier <tsaunier@igalia.com>
Thu, 19 Jul 2018 20:22:03 +0000 (16:22 -0400)
committerThibault Saunier <tsaunier@igalia.com>
Thu, 19 Jul 2018 20:40:49 +0000 (16:40 -0400)
As it was supposed to be.

meson.build

index cea26e8..adff81d 100644 (file)
@@ -31,7 +31,7 @@ if not meson.is_subproject() and cc.get_id() == 'msvc'
 endif
 
 libav_opt = get_option('libav')
-libav_deps = [dependency('libavfilter', version: '>= 7.16.100', fallback: ['FFmpeg', 'libavfilter_dep'])]
+libav_deps = [dependency('libavfilter', version: '>= 7.16.100', fallback: ['FFmpeg', 'libavfilter_dep'], required: false)]
 if libav_deps[0].found() and libav_deps[0].type_name() != 'internal'
   cc = meson.get_compiler('c')
   check_ffmpeg_src = '''#include <libavcodec/avcodec.h>