summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-14 01:14:56 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-14 01:14:56 +0000
commitc6695c7f8318a2334ea82fe78c925fc45baad22e (patch)
tree57eb5f72257449e3e432e538394c4f5875abf3dd /libmpcodecs/vf.c
parent6e021a815f2542546990c3837edf39577a3778a7 (diff)
downloadmpv-c6695c7f8318a2334ea82fe78c925fc45baad22e.tar.bz2
mpv-c6695c7f8318a2334ea82fe78c925fc45baad22e.tar.xz
noise generating filter
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6425 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 4066d60ecc..bbb2ceef02 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -32,6 +32,7 @@ extern vf_info_t vf_info_lavc;
extern vf_info_t vf_info_dvbscale;
extern vf_info_t vf_info_cropdetect;
extern vf_info_t vf_info_test;
+extern vf_info_t vf_info_noise;
char** vo_plugin_args=(char**) NULL;
@@ -59,6 +60,7 @@ static vf_info_t* filter_list[]={
&vf_info_dvbscale,
&vf_info_cropdetect,
&vf_info_test,
+ &vf_info_noise,
NULL
};