You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
489 B

  1. --- a/src/lib/ffmpeg/meson.build
  2. +++ b/src/lib/ffmpeg/meson.build
  3. @@ -6,11 +6,7 @@ conf.set('HAVE_LIBAVUTIL', libavutil_dep
  4. enable_ffmpeg = libavformat_dep.found() and libavcodec_dep.found() and libavutil_dep.found()
  5. conf.set('ENABLE_FFMPEG', enable_ffmpeg)
  6. -if enable_ffmpeg
  7. - libavfilter_dep = dependency('libavfilter', required: false)
  8. -else
  9. libavfilter_dep = dependency('', required: false)
  10. -endif
  11. conf.set('HAVE_LIBAVFILTER', libavfilter_dep.found())
  12. if not enable_ffmpeg