stv0680.c: run through checkpatch.pl
authorHans Verkuil <hverkuil@xs4all.nl>
Thu, 29 Apr 2010 12:29:33 +0000 (14:29 +0200)
committerHans Verkuil <hverkuil@xs4all.nl>
Thu, 29 Apr 2010 12:29:33 +0000 (14:29 +0200)
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
lib/libv4lconvert/stv0680.c

index 024a212..01eb74f 100644 (file)
    and then all the green/blue pixels in that line, shuffle this to a regular
    RGGB bayer pattern. */
 void v4lconvert_decode_stv0680(const unsigned char *src, unsigned char *dst,
-  int width, int height)
+               int width, int height)
 {
-  int x, y;
-  const unsigned char *src1 = src;
-  const unsigned char *src2 = src + width / 2;
+       int x, y;
+       const unsigned char *src1 = src;
+       const unsigned char *src2 = src + width / 2;
 
-  for (y = 0; y < height; y++) {
-    for (x = 0; x < width / 2; x++) {
-      *dst++ = *src1++;
-      *dst++ = *src2++;
-    }
-    src1 += width / 2;
-    src2 += width / 2;
-  }
+       for (y = 0; y < height; y++) {
+               for (x = 0; x < width / 2; x++) {
+                       *dst++ = *src1++;
+                       *dst++ = *src2++;
+               }
+               src1 += width / 2;
+               src2 += width / 2;
+       }
 }