colorspace: fix r210 writing only half a scanline

https://bugzilla.gnome.org/show_bug.cgi?id=663203
This commit is contained in:
Vincent Penquerc'h 2011-11-01 20:37:17 +00:00
parent 0ff703b520
commit d0443cfb65

View file

@ -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;