diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-06 20:02:44 +0200 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-06 23:29:07 +0200 |
commit | d707da9e6528ee4cfe78b91791c61dd9ef0968b2 (patch) | |
tree | c42d99dd7d4af2d9a8871b1c5546c654b1255deb /configure | |
parent | b04c615959e6dcd0bb6c5834510456211ff7ee60 (diff) | |
download | mpv-d707da9e6528ee4cfe78b91791c61dd9ef0968b2.tar.bz2 mpv-d707da9e6528ee4cfe78b91791c61dd9ef0968b2.tar.xz |
build: enable vf_geq if libavutil version installs eval.h
New enough libavutil versions allow building vf_geq.c without
requiring internal FFmpeg headers.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -6516,9 +6516,15 @@ if test "$ffmpeg" = auto ; then fi fi +ffmpeg_eval_api=no +def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API" if test "$ffmpeg" = yes; then def_ffmpeg='#define CONFIG_FFMPEG 1' codecmodules="ffmpeg $codecmodules" + if $_pkg_config --atleast-version=50.18.0 libavutil ; then + ffmpeg_eval_api=yes + def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1" + fi else def_ffmpeg='#undef CONFIG_FFMPEG' nocodecmodules="ffmpeg $nocodecmodules" @@ -7483,6 +7489,7 @@ ZR = $_zr # FFmpeg FFMPEG = $ffmpeg +FFMPEG_EVAL_API = $ffmpeg_eval_api FFMPEG_INTERNALS = $ffmpeg_internals FFMPEG_SOURCE_PATH = $_ffmpeg_source @@ -7895,6 +7902,7 @@ $def_zr /* FFmpeg */ $def_ffmpeg +$def_ffmpeg_eval_api $def_ffmpeg_internals #define CONFIG_DECODERS 1 |