mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
colorspace: fix r210 writing only half a scanline
https://bugzilla.gnome.org/show_bug.cgi?id=663203
This commit is contained in:
parent
0ff703b520
commit
d0443cfb65
1 changed files with 1 additions and 1 deletions
|
@ -1308,7 +1308,7 @@ putline16_r210 (ColorspaceConvert * convert, guint8 * dest, const guint16 * src,
|
|||
{
|
||||
int i;
|
||||
guint8 *destline = FRAME_GET_LINE (dest, 0, j);
|
||||
for (i = 0; i < convert->width / 2; i++) {
|
||||
for (i = 0; i < convert->width; i++) {
|
||||
guint32 x = 0;
|
||||
x |= (src[i * 4 + 1] & 0xffc0) << 14;
|
||||
x |= (src[i * 4 + 2] & 0xffc0) << 4;
|
||||
|
|
Loading…
Reference in a new issue