Removed a debug info line. BRANCH-INCSCHED1-200105251-ROOT INCSCHED1-200105251-FREEZE
authorWim Taymans <wim.taymans@gmail.com>
Fri, 25 May 2001 20:42:48 +0000 (20:42 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Fri, 25 May 2001 20:42:48 +0000 (20:42 +0000)
Original commit message from CVS:
Removed a debug info line.

libs/videoscale/gstvideoscale.c

index 43cb991..b59ca99 100644 (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);