summaryrefslogtreecommitdiffstats
path: root/gst/videomixer/blend_bgra.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/videomixer/blend_bgra.c')
-rw-r--r--gst/videomixer/blend_bgra.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/videomixer/blend_bgra.c b/gst/videomixer/blend_bgra.c
index 485f0c76..1c9630ed 100644
--- a/gst/videomixer/blend_bgra.c
+++ b/gst/videomixer/blend_bgra.c
@@ -96,10 +96,10 @@ gst_videomixer_fill_bgra_checker (guint8 * dest, gint width, gint height)
for (i = 0; i < height; i++) {
for (j = 0; j < width; j++) {
- *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; //blue
- *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; //green
- *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; //red
- *dest++ = 0xFF; //alpha
+ *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; /* blue */
+ *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; /* green */
+ *dest++ = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; /* red */
+ *dest++ = 0xFF; /* alpha */
}
}
}