mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
colorspace: Fix v210 writing out of bounds
This commit is contained in:
parent
43a66f4ea1
commit
342a04c9d2
1 changed files with 2 additions and 2 deletions
|
@ -412,7 +412,7 @@ putline_v210 (ColorspaceConvert * convert, guint8 * dest, const guint8 * src,
|
|||
int i;
|
||||
guint8 *destline = FRAME_GET_LINE (dest, 0, j);
|
||||
|
||||
for (i = 0; i < convert->width + 5; i += 6) {
|
||||
for (i = 0; i < convert->width; i += 6) {
|
||||
guint32 a0, a1, a2, a3;
|
||||
guint16 y0, y1, y2, y3, y4, y5;
|
||||
guint16 u0, u1, u2;
|
||||
|
@ -518,7 +518,7 @@ putline16_v210 (ColorspaceConvert * convert, guint8 * dest, const guint16 * src,
|
|||
int i;
|
||||
guint8 *destline = FRAME_GET_LINE (dest, 0, j);
|
||||
|
||||
for (i = 0; i < convert->width + 5; i += 6) {
|
||||
for (i = 0; i < convert->width; i += 6) {
|
||||
guint32 a0, a1, a2, a3;
|
||||
guint16 y0, y1, y2, y3, y4, y5;
|
||||
guint16 u0, u1, u2;
|
||||
|
|
Loading…
Reference in a new issue