summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-30 22:53:32 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-30 22:53:32 +0000
commitda8975ee8e1c111f0fc19b3e8c760521365e7418 (patch)
tree6f1571d3382ff137a26a2fbdb8e9e86f54a56a23 /libmpcodecs/vf.c
parente7f9c836a1b25ae45da4c41a7e97dc602c9938f3 (diff)
downloadmpv-da8975ee8e1c111f0fc19b3e8c760521365e7418.tar.bz2
mpv-da8975ee8e1c111f0fc19b3e8c760521365e7418.tar.xz
new video filter: denoise3d - temporal&spatial noise reduction
patch by Daniel Moreno <comac2k@terra.es> mpi/stride corrections and some bugfix by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9180 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 37cae43040..51868c7686 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -53,6 +53,7 @@ extern vf_info_t vf_info_sab;
extern vf_info_t vf_info_smartblur;
extern vf_info_t vf_info_perspective;
extern vf_info_t vf_info_field;
+extern vf_info_t vf_info_denoise3d;
char** vo_plugin_args=(char**) NULL;
@@ -99,6 +100,7 @@ static vf_info_t* filter_list[]={
&vf_info_smartblur,
&vf_info_perspective,
&vf_info_field,
+ &vf_info_denoise3d,
NULL
};