diff libmpcodecs/vf_smartblur.c @ 13373:6bd869a18d2c

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
author michael
date Sat, 18 Sep 2004 00:08:17 +0000
parents 35f52ad860a0
children 4a6b79a1ad52
line wrap: on
line diff
--- a/libmpcodecs/vf_smartblur.c	Fri Sep 17 21:15:52 2004 +0000
+++ b/libmpcodecs/vf_smartblur.c	Sat Sep 18 00:08:17 2004 +0000
@@ -95,7 +95,7 @@
 	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);