summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_smartblur.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-18 00:08:17 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-18 00:08:17 +0000
commit54df7e4a3e18fd212bae3bdf665cd0455f031eb6 (patch)
tree43d1dfd83eaa1c4472be09f234377cf2af6fc422 /libmpcodecs/vf_smartblur.c
parent5e71ad8c1ee1248b32924aecc0b4bce42265e3b8 (diff)
downloadmpv-54df7e4a3e18fd212bae3bdf665cd0455f031eb6.tar.bz2
mpv-54df7e4a3e18fd212bae3bdf665cd0455f031eb6.tar.xz
passing an array or double precission parameters for the scaling function, instead of missusing a few bits of the flags
fixing the naming of the scaling functions a little git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13374 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf_smartblur.c')
-rw-r--r--libmpcodecs/vf_smartblur.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf_smartblur.c b/libmpcodecs/vf_smartblur.c
index cd817de5d1..bdc4064ed2 100644
--- a/libmpcodecs/vf_smartblur.c
+++ b/libmpcodecs/vf_smartblur.c
@@ -95,7 +95,7 @@ static int allocStuff(FilterParam *f, int width, int height){
swsF.lumH= swsF.lumV= vec;
swsF.chrH= swsF.chrV= NULL;
f->filterContext= sws_getContext(
- width, height, IMGFMT_Y8, width, height, IMGFMT_Y8, get_sws_cpuflags(), &swsF, NULL);
+ width, height, IMGFMT_Y8, width, height, IMGFMT_Y8, get_sws_cpuflags(), &swsF, NULL, NULL);
sws_freeVec(vec);