mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
videomixer: Fix AYUV checker/color filling
This commit is contained in:
parent
3f88dce350
commit
a27856e6b8
1 changed files with 2 additions and 0 deletions
|
@ -155,6 +155,7 @@ fill_checker_##name##_c (guint8 * dest, gint width, gint height) \
|
|||
dest[C1] = tab[((i & 0x8) >> 3) + ((j & 0x8) >> 3)]; \
|
||||
dest[C2] = 128; \
|
||||
dest[C3] = 128; \
|
||||
dest += 4; \
|
||||
} \
|
||||
} \
|
||||
} else { \
|
||||
|
@ -208,6 +209,7 @@ _fill_color_loop_##name##_c (guint8 *dest, gint height, gint width, gint c1, gin
|
|||
dest[C1] = c1; \
|
||||
dest[C2] = c2; \
|
||||
dest[C3] = c3; \
|
||||
dest += 4; \
|
||||
} \
|
||||
} \
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue