diff libmpcodecs/vf.c @ 15944:1a0c715343d2

pp7 filter (spp=6 filter with 7 point dct where only the center sample is used after idct) these differences from spp lead to a few nice symmetries which significantly reduce the computational cost almost not mmx optimized (iam lazy ...)
author michael
date Sat, 09 Jul 2005 07:49:51 +0000
parents 53cd0428fb25
children c82c0d407ec9
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Sat Jul 09 05:01:40 2005 +0000
+++ b/libmpcodecs/vf.c	Sat Jul 09 07:49:51 2005 +0000
@@ -89,6 +89,7 @@
 extern vf_info_t vf_info_hue;
 extern vf_info_t vf_info_spp;
 extern vf_info_t vf_info_fspp;
+extern vf_info_t vf_info_pp7;
 extern vf_info_t vf_info_yuvcsp;
 extern vf_info_t vf_info_kerndeint;
 extern vf_info_t vf_info_rgbtest;
@@ -172,6 +173,7 @@
 #ifdef USE_LIBAVCODEC
     &vf_info_spp,
     &vf_info_fspp,
+    &vf_info_pp7,
 #endif
     &vf_info_yuvcsp,
     &vf_info_kerndeint,