diff libmpcodecs/vf.c @ 7755:7637b72ef1f9

new filter: 1bpp - converts 1bpp image to yuv/rgb 8/16/32 bpp
author arpi
date Wed, 16 Oct 2002 18:40:03 +0000
parents a3c57c0c4ae2
children fe88f7403d64
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Wed Oct 16 16:51:03 2002 +0000
+++ b/libmpcodecs/vf.c	Wed Oct 16 18:40:03 2002 +0000
@@ -42,6 +42,7 @@
 extern vf_info_t vf_info_eq2;
 extern vf_info_t vf_info_halfpack;
 extern vf_info_t vf_info_dint;
+extern vf_info_t vf_info_1bpp;
 
 char** vo_plugin_args=(char**) NULL;
 
@@ -77,6 +78,7 @@
     &vf_info_eq2,
     &vf_info_halfpack,
     &vf_info_dint,
+    &vf_info_1bpp,
     NULL
 };