diff libmpcodecs/vf.c @ 11277:fffd200d81a7

simple alternative postprocessing filter
author michael
date Sun, 26 Oct 2003 23:07:21 +0000
parents 7fdf58d10719
children 017a7e90fcf1
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Sun Oct 26 21:09:37 2003 +0000
+++ b/libmpcodecs/vf.c	Sun Oct 26 23:07:21 2003 +0000
@@ -79,6 +79,7 @@
 extern vf_info_t vf_info_tile;
 extern vf_info_t vf_info_delogo;
 extern vf_info_t vf_info_hue;
+extern vf_info_t vf_info_spp;
 
 // list of available filters:
 static vf_info_t* filter_list[]={
@@ -145,6 +146,9 @@
     &vf_info_tile,
     &vf_info_delogo,
     &vf_info_hue,
+#ifdef USE_LIBAVCODEC
+    &vf_info_spp,
+#endif
     NULL
 };