[MOVED FROM BAD 22/68] expand tabs
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 6 Dec 2005 19:55:58 +0000 (19:55 +0000)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 15 Jun 2011 14:12:53 +0000 (16:12 +0200)
Original commit message from CVS:
expand tabs

gst/colorspace/yuv2rgb.c
gst/colorspace/yuv2rgb.h

index 290f07b..d923251 100644 (file)
@@ -46,17 +46,17 @@ static int U_b_tab[256];
 
 #define GAMMA_CORRECTION(x) ((int)(pow((x) / 255.0, 1.0 / gammaCorrect) * 255.0))
 #define CHROMA_CORRECTION256(x) ((x) >= 128 \
-                               ? 128 + Min(127, (int)(((x) - 128.0) * chromaCorrect)) \
-                               : 128 - Min(128, (int)((128.0 - (x)) * chromaCorrect)))
+                                ? 128 + Min(127, (int)(((x) - 128.0) * chromaCorrect)) \
+                                : 128 - Min(128, (int)((128.0 - (x)) * chromaCorrect)))
 #define CHROMA_CORRECTION128(x) ((x) >= 0 \
-                               ? Min(127,  (int)(((x) * chromaCorrect))) \
-                               : Max(-128, (int)(((x) * chromaCorrect))))
+                                ? Min(127,  (int)(((x) * chromaCorrect))) \
+                                : Max(-128, (int)(((x) * chromaCorrect))))
 #define CHROMA_CORRECTION256D(x) ((x) >= 128 \
-                               ? 128.0 + Min(127.0, (((x) - 128.0) * chromaCorrect)) \
-                               : 128.0 - Min(128.0, (((128.0 - (x)) * chromaCorrect))))
+                                ? 128.0 + Min(127.0, (((x) - 128.0) * chromaCorrect)) \
+                                : 128.0 - Min(128.0, (((128.0 - (x)) * chromaCorrect))))
 #define CHROMA_CORRECTION128D(x) ((x) >= 0 \
-                               ? Min(127.0,  ((x) * chromaCorrect)) \
-                               : Max(-128.0, ((x) * chromaCorrect)))
+                                ? Min(127.0,  ((x) * chromaCorrect)) \
+                                : Max(-128.0, ((x) * chromaCorrect)))
 
 
 void gst_colorspace_I420_to_rgb16 (GstColorspace * space, unsigned char *src,
@@ -345,14 +345,14 @@ free_bits_at_bottom (a)
  *
  * InitColor16Dither --
  *
- *     To get rid of the multiply and other conversions in color
- *     dither, we use a lookup table.
+ *      To get rid of the multiply and other conversions in color
+ *      dither, we use a lookup table.
  *
  * Results:
- *     None.
+ *      None.
  *
  * Side effects:
- *     The lookup tables are initialized.
+ *      The lookup tables are initialized.
  *
  *--------------------------------------------------------------
  */
index e136f4d..ed701cb 100644 (file)
@@ -85,10 +85,10 @@ GstColorspaceYUVTables * gst_colorspace_init_yuv(long depth,
 
 
 #if 0
-GstColorspaceConverter*        gst_colorspace_yuv2rgb_get_converter    (const GstCaps *from, const GstCaps *to);
-#define                        gst_colorspace_convert(converter, src, dest) \
-                                                               (converter)->convert((converter), (src), (dest))
-void                           gst_colorspace_converter_destroy        (GstColorspaceConverter *space);
+GstColorspaceConverter*         gst_colorspace_yuv2rgb_get_converter    (const GstCaps *from, const GstCaps *to);
+#define                         gst_colorspace_convert(converter, src, dest) \
+                                                                (converter)->convert((converter), (src), (dest))
+void                            gst_colorspace_converter_destroy        (GstColorspaceConverter *space);
 #endif
 
 G_END_DECLS