summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-22 18:11:35 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-22 18:11:35 +0000
commit65f186f4d08b5543a809261c0e970c00e860b22f (patch)
tree1b6e79b836bfb74a633015f047b0da3ca0f869ea /libmpcodecs/vf.c
parent062bf105c0d3376907d2ed7fd12d4469c0feeb95 (diff)
downloadmpv-65f186f4d08b5543a809261c0e970c00e860b22f.tar.bz2
mpv-65f186f4d08b5543a809261c0e970c00e860b22f.tar.xz
proper support for shared libpostproc
patch by Nico Sabbi, fixes and consistency cleanups by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17464 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 52a5227b84..6b997cb114 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -30,7 +30,7 @@ extern vf_info_t vf_info_bmovl;
#endif
extern vf_info_t vf_info_crop;
extern vf_info_t vf_info_expand;
-#ifdef FF_POSTPROCESS
+#if defined(USE_LIBPOSTPROC) || defined(USE_LIBPOSTPROC_SO)
extern vf_info_t vf_info_pp;
#endif
extern vf_info_t vf_info_scale;
@@ -109,7 +109,7 @@ static vf_info_t* filter_list[]={
#endif
&vf_info_crop,
&vf_info_expand,
-#ifdef FF_POSTPROCESS
+#if defined(USE_LIBPOSTPROC) || defined(USE_LIBPOSTPROC_SO)
&vf_info_pp,
#endif
&vf_info_scale,