diff libmpcodecs/vf.c @ 16446:c82c0d407ec9

screenshot filter
author henry
date Sun, 11 Sep 2005 06:42:32 +0000
parents 1a0c715343d2
children 47c5e9846cd3
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Sat Sep 10 20:15:02 2005 +0000
+++ b/libmpcodecs/vf.c	Sun Sep 11 06:42:32 2005 +0000
@@ -98,6 +98,7 @@
 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 @@
     &vf_info_divtc,
     &vf_info_harddup,
     &vf_info_softskip,
+#ifdef HAVE_PNG
+    &vf_info_screenshot,
+#endif
     NULL
 };