diff libmpcodecs/vf_delogo.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 290420c32921
children 391e683541a7
line wrap: on
line diff
--- a/libmpcodecs/vf_delogo.c	Tue May 12 19:25:35 2009 +0000
+++ b/libmpcodecs/vf_delogo.c	Wed May 13 02:58:57 2009 +0000
@@ -54,11 +54,11 @@
     int y, x;
     int interp, dist;
     uint8_t *xdst, *xsrc;
-    
+
     uint8_t *topleft, *botleft, *topright;
     int xclipl, xclipr, yclipt, yclipb;
     int logo_x1, logo_x2, logo_y1, logo_y2;
-    
+
     xclipl = MAX(-logo_x, 0);
     xclipr = MAX(logo_x+logo_w-width, 0);
     yclipt = MAX(-logo_y, 0);
@@ -77,7 +77,7 @@
 
     dst += (logo_y1+1)*dstStride;
     src += (logo_y1+1)*srcStride;
-    
+
     for(y = logo_y1+1; y < logo_y2-1; y++)
     {
 	for (x = logo_x1+1, xdst = dst+logo_x1+1, xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) {
@@ -198,7 +198,7 @@
 
 static int open(vf_instance_t *vf, char* args){
     int res;
-    
+
     vf->config=config;
     vf->put_image=put_image;
     vf->get_image=get_image;
@@ -230,7 +230,7 @@
 	vf->priv->band = 4;
 	vf->priv->show = 1;
     }
-    
+
 
     vf->priv->lw += vf->priv->band*2;
     vf->priv->lh += vf->priv->band*2;