extra line

This commit is contained in:
homm 2016-05-03 11:31:13 +02:00
parent 3ee407e859
commit 342e6f213b

View File

@ -107,15 +107,12 @@ ImagingResampleHorizontal(Imaging imIn, int xsize, struct filter *filterp)
/* prepare for horizontal stretch */ /* prepare for horizontal stretch */
filterscale = scale = (float) imIn->xsize / xsize; filterscale = scale = (float) imIn->xsize / xsize;
/* determine support size (length of resampling filter) */
support = filterp->support;
if (filterscale < 1.0) { if (filterscale < 1.0) {
filterscale = 1.0; filterscale = 1.0;
} }
support = support * filterscale; /* determine support size (length of resampling filter) */
support = filterp->support * filterscale;
/* maximum number of coofs */ /* maximum number of coofs */
kmax = (int) ceil(support) * 2 + 1; kmax = (int) ceil(support) * 2 + 1;