mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
videomixer: Remove wrong comments, copied from the I420 blend function
This commit is contained in:
parent
93089ef445
commit
6f51dfba95
3 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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], \
|
||||
|
|
Loading…
Reference in a new issue