summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-16 15:47:32 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-16 15:47:32 +0000
commitbc040ace6f8573ac91596a43ce9d23e62bda5f32 (patch)
treedf72740fea5a9210e4846a010088250eee4c2fc1 /libmpcodecs/vf.c
parent7fd5e0846612b31d80024f315a204fb31fe7df1e (diff)
downloadmpv-bc040ace6f8573ac91596a43ce9d23e62bda5f32.tar.bz2
mpv-bc040ace6f8573ac91596a43ce9d23e62bda5f32.tar.xz
generic equation filter
example: -vf 'geq=(p(X\,Y)+p(mod(Y*2-X*2\,W)\,mod(Y*2+X*2+sin((X-Y)/10/SW+N)*SW*20\,H)))/2' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20272 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 818aa07ad4..917ce91223 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -98,6 +98,7 @@ extern vf_info_t vf_info_ass;
extern vf_info_t vf_info_mcdeint;
extern vf_info_t vf_info_yadif;
extern vf_info_t vf_info_blackframe;
+extern vf_info_t vf_info_geq;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -195,6 +196,9 @@ static vf_info_t* filter_list[]={
#endif
&vf_info_yadif,
&vf_info_blackframe,
+#ifdef USE_LIBAVCODEC_DSPUTIL
+ &vf_info_geq,
+#endif
NULL
};