summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-04 07:05:02 +0000
committerhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-06-04 07:05:02 +0000
commit382a3ab95b55e6eb27ce38ae51751190b4d2fe9c (patch)
tree60d9bc60c9c1e84159e1af93f2b4a4884ee330c3 /libmpcodecs/vf.c
parent86965bebad785f6071968f42eacc92f285b8459b (diff)
downloadmpv-382a3ab95b55e6eb27ce38ae51751190b4d2fe9c.tar.bz2
mpv-382a3ab95b55e6eb27ce38ae51751190b4d2fe9c.tar.xz
faster spp filter by Nikolaj Poroshin <porosh3 at psu ru>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15632 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 f80d15fe3a..d8151c5cc9 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -87,6 +87,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;
+extern vf_info_t vf_info_fspp;
extern vf_info_t vf_info_yuvcsp;
extern vf_info_t vf_info_kerndeint;
extern vf_info_t vf_info_rgbtest;
@@ -168,6 +169,7 @@ static vf_info_t* filter_list[]={
&vf_info_hue,
#ifdef USE_LIBAVCODEC
&vf_info_spp,
+ &vf_info_fspp,
#endif
&vf_info_yuvcsp,
&vf_info_kerndeint,