summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-05 13:29:10 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-05 13:29:10 +0000
commit0e0224913f327c303797439fa73d023a1c39a11f (patch)
tree5eb18a164b682b42f3600c66e856cff7b51b2369 /libmpcodecs/vf.c
parent4bd3d1a5bd4107ef59831e3dcd3aa643b8b66058 (diff)
downloadmpv-0e0224913f327c303797439fa73d023a1c39a11f.tar.bz2
mpv-0e0224913f327c303797439fa73d023a1c39a11f.tar.xz
perspective correcture filter
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8113 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index de28754dcc..d348a506a8 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -51,6 +51,7 @@ extern vf_info_t vf_info_il;
extern vf_info_t vf_info_boxblur;
extern vf_info_t vf_info_sab;
extern vf_info_t vf_info_smartblur;
+extern vf_info_t vf_info_perspective;
char** vo_plugin_args=(char**) NULL;
@@ -95,6 +96,7 @@ static vf_info_t* filter_list[]={
&vf_info_boxblur,
&vf_info_sab,
&vf_info_smartblur,
+ &vf_info_perspective,
NULL
};