summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-11 06:42:32 +0000
committerhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-11 06:42:32 +0000
commitb88ca0cd1a969caca323b96cacafef221d399e58 (patch)
treeef0515d663b4327e77e7364bacb5393842583395 /libmpcodecs/vf.c
parentfb116e54a383b4d4135b146d55510aa5d0de6cc3 (diff)
downloadmpv-b88ca0cd1a969caca323b96cacafef221d399e58.tar.bz2
mpv-b88ca0cd1a969caca323b96cacafef221d399e58.tar.xz
screenshot filter
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16447 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 9623efc6c8..7ddc92a926 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -98,6 +98,7 @@ extern vf_info_t vf_info_phase;
extern vf_info_t vf_info_divtc;
extern vf_info_t vf_info_harddup;
extern vf_info_t vf_info_softskip;
+extern vf_info_t vf_info_screenshot;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -185,6 +186,9 @@ static vf_info_t* filter_list[]={
&vf_info_divtc,
&vf_info_harddup,
&vf_info_softskip,
+#ifdef HAVE_PNG
+ &vf_info_screenshot,
+#endif
NULL
};