diff libswscale/rgb2rgb.h @ 29480:a4d8dee13834

Indent libswscale: - Use 4 spaces throughout for indentation; - Fix inconsistent indentation; - Indent function calls and declarations aligning arguments on multiple lines to the column after the opening parentheses; - Align asm code to the column 4 spaces after the call to __asm__(); - Align cases in switch statements to the same column as "switch".
author ramiro
date Sun, 16 Aug 2009 00:32:04 +0000
parents a7e795e068ad
children 1032ff2e83f1
line wrap: on
line diff
--- a/libswscale/rgb2rgb.h	Sat Aug 15 23:41:35 2009 +0000
+++ b/libswscale/rgb2rgb.h	Sun Aug 16 00:32:04 2009 +0000
@@ -144,17 +144,17 @@
 
 
 extern void (*uyvytoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
-                                      long width, long height,
-                                      long lumStride, long chromStride, long srcStride);
+                            long width, long height,
+                            long lumStride, long chromStride, long srcStride);
 extern void (*uyvytoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
-                                      long width, long height,
-                                      long lumStride, long chromStride, long srcStride);
+                            long width, long height,
+                            long lumStride, long chromStride, long srcStride);
 extern void (*yuyvtoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
-                                      long width, long height,
-                                      long lumStride, long chromStride, long srcStride);
+                            long width, long height,
+                            long lumStride, long chromStride, long srcStride);
 extern void (*yuyvtoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
-                                      long width, long height,
-                                      long lumStride, long chromStride, long srcStride);
+                            long width, long height,
+                            long lumStride, long chromStride, long srcStride);
 
 void sws_rgb2rgb_init(int flags);