diff options
author | Uoti Urpala <uau@mplayer2.org> | 2012-02-27 18:18:49 +0200 |
---|---|---|
committer | Uoti Urpala <uau@mplayer2.org> | 2012-02-27 18:18:49 +0200 |
commit | a43a4aafd08650254a4b91fe73f82ec96bf2a6ef (patch) | |
tree | a6a1fd4c9630add86b40df14c1f979832e49ff89 /libmpcodecs | |
parent | 9ab501443c37888ee0d286897ebb985b2056ba49 (diff) | |
download | mpv-a43a4aafd08650254a4b91fe73f82ec96bf2a6ef.tar.bz2 mpv-a43a4aafd08650254a4b91fe73f82ec96bf2a6ef.tar.xz |
configure, build: support compiling without libpostproc
libpostproc has been removed from Libav and the library now exists as
a separate project. Because it's not essential, separate it from the
Libav library check and allow compiling without it.
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/vf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c index d973db6d3e..f4d6768531 100644 --- a/libmpcodecs/vf.c +++ b/libmpcodecs/vf.c @@ -134,7 +134,9 @@ static const vf_info_t *const filter_list[] = { &vf_info_palette, &vf_info_pp7, +#ifdef CONFIG_LIBPOSTPROC &vf_info_pp, +#endif &vf_info_lavc, &vf_info_lavcdeint, &vf_info_screenshot, |