videomixer: Remove wrong comments, copied from the I420 blend function
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Thu, 10 Dec 2009 09:48:49 +0000 (10:48 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Thu, 10 Dec 2009 09:48:49 +0000 (10:48 +0100)
gst/videomixer/blend_ayuv.c
gst/videomixer/blend_bgra.c
gst/videomixer/blend_rgb.c

index b81b7b4..1741c47 100644 (file)
@@ -210,7 +210,6 @@ gst_videomixer_blend_ayuv_ayuv (guint8 * src, gint xpos, gint ypos,
 
   dest = dest + 4 * xpos + (ypos * dest_stride);
 
-  /* we convert a square of 2x2 samples to generate 4 Luma and 2 chroma samples */
   for (i = 0; i < src_height; i++) {
     for (j = 0; j < src_width; j++) {
       alpha = (src[0] * b_alpha) >> 8;
index 398738e..279a179 100644 (file)
@@ -67,7 +67,6 @@ gst_videomixer_blend_##name##_##name (guint8 * src, gint xpos, gint ypos, \
   \
   dest = dest + 4 * xpos + (ypos * dest_stride); \
   \
-  /* we convert a square of 2x2 samples to generate 4 Luma and 2 chroma samples */ \
   for (i = 0; i < src_height; i++) { \
     for (j = 0; j < src_width; j++) { \
       alpha = (src[a] * b_alpha) >> 8; \
index b580081..9a7a39c 100644 (file)
@@ -87,7 +87,6 @@ gst_videomixer_blend_##name##_##name (guint8 * src, gint xpos, gint ypos, \
     return; \
   } \
   \
-  /* we convert a square of 2x2 samples to generate 4 Luma and 2 chroma samples */   \
   for (i = 0; i < src_height; i++) { \
     for (j = 0; j < src_width; j++) { \
       BLEND_MODE (dest[r], dest[g], dest[b], src[r], src[g], src[b], \