Removed a debug info line.

Original commit message from CVS:
Removed a debug info line.
This commit is contained in:
Wim Taymans 2001-05-25 20:42:48 +00:00
parent 96d1132bc6
commit 54271eca8e

View file

@ -184,7 +184,7 @@ gst_videoscale_bilinear (unsigned char *src, double x, double y, int sw, int sh)
double dest;
int color;
printf("videoscale: scaling bilinear %f %f %dx%d\n", x, y, sw, sh);
GST_DEBUG(0,"videoscale: scaling bilinear %f %f %dx%d\n", x, y, sw, sh);
dest=(1-a)*(1-b)*RC(j,k)+
a*(1-b)*RC(j+1,k);