summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-07-09 07:49:51 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-07-09 07:49:51 +0000
commit4d802fb02656f7c94b93994aaad5bfa6ee37c6d8 (patch)
treeec012399b0f9aab4742fbfbf0486078265c27ef7 /libmpcodecs/vf.c
parent218d56388c114299d47532142ac33c574bdb6ec1 (diff)
downloadmpv-4d802fb02656f7c94b93994aaad5bfa6ee37c6d8.tar.bz2
mpv-4d802fb02656f7c94b93994aaad5bfa6ee37c6d8.tar.xz
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 ...) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15945 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 3bb9ee187e..9623efc6c8 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -89,6 +89,7 @@ extern vf_info_t vf_info_remove_logo;
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 @@ static vf_info_t* filter_list[]={
#ifdef USE_LIBAVCODEC
&vf_info_spp,
&vf_info_fspp,
+ &vf_info_pp7,
#endif
&vf_info_yuvcsp,
&vf_info_kerndeint,