summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-04 16:42:17 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-04 16:42:17 +0000
commite78a59f10e69410d94ad5593d4ef3dfedc5627fb (patch)
tree7db8fc157c4b8f7865cccd94bf6048ca9ce900da /libmpcodecs/vf.c
parentd9142cf555ecb126abdf2adb642960a5b94c80ac (diff)
downloadmpv-e78a59f10e69410d94ad5593d4ef3dfedc5627fb.tar.bz2
mpv-e78a59f10e69410d94ad5593d4ef3dfedc5627fb.tar.xz
shape adaptive blur (slightly slow though)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8101 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 a3a4e8a503..b3ec580661 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -49,6 +49,7 @@ extern vf_info_t vf_info_unsharp;
extern vf_info_t vf_info_swapuv;
extern vf_info_t vf_info_il;
extern vf_info_t vf_info_boxblur;
+extern vf_info_t vf_info_sab;
char** vo_plugin_args=(char**) NULL;
@@ -91,6 +92,7 @@ static vf_info_t* filter_list[]={
&vf_info_swapuv,
&vf_info_il,
&vf_info_boxblur,
+ &vf_info_sab,
NULL
};