diff libmpcodecs/vd_hmblck.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents fdd016bae333
children bbb6ebec87a0
line wrap: on
line diff
--- a/libmpcodecs/vd_hmblck.c	Tue May 12 19:25:35 2009 +0000
+++ b/libmpcodecs/vd_hmblck.c	Wed May 13 02:58:57 2009 +0000
@@ -90,7 +90,7 @@
 
     // chroma data is interlaced UVUV... so deinterlace it
     for(idx=0; idx<UV_size; idx++ ) {
-        *(dst_U + idx) = *(src + (idx<<1) + (swapped ? 1 : 0)); 
+        *(dst_U + idx) = *(src + (idx<<1) + (swapped ? 1 : 0));
         *(dst_V + idx) = *(src + (idx<<1) + (swapped ? 0 : 1));
     }
     return 1;