diff libmpcodecs/vf_flip.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 00fff9a3b735
children bbb6ebec87a0
line wrap: on
line diff
--- a/libmpcodecs/vf_flip.c	Tue May 12 19:25:35 2009 +0000
+++ b/libmpcodecs/vf_flip.c	Wed May 13 02:58:57 2009 +0000
@@ -52,7 +52,7 @@
     vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
 	MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE,
 	mpi->width, mpi->height);
-    
+
     // set up mpi as a upside-down image of dmpi:
     vf->dmpi->planes[0]=mpi->planes[0]+
 		    mpi->stride[0]*(mpi->height-1);
@@ -66,7 +66,7 @@
 	vf->dmpi->stride[2]=-mpi->stride[2];
     } else
 	vf->dmpi->planes[1]=mpi->planes[1]; // passthru bgr8 palette!!!
-    
+
     return vf_next_put_image(vf,vf->dmpi, pts);
 }