xorg: change for 16x16 capture

ulab-next
Jay Sorg 10 years ago
parent 0ea5c248c3
commit 3819fa5e72

@ -312,7 +312,6 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
char *src_rect; char *src_rect;
char *dst_rect; char *dst_rect;
int num_regions; int num_regions;
int bytespp;
int src_bytespp; int src_bytespp;
int dst_bytespp; int dst_bytespp;
int width; int width;
@ -321,25 +320,24 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
int min_height; int min_height;
int src_offset; int src_offset;
int dst_offset; int dst_offset;
int bytes; int index;
int i; int jndex;
int j; int kndex;
int k;
int red; int red;
int green; int green;
int blue; int blue;
int ex;
int ey;
Bool rv; Bool rv;
unsigned int *s32; unsigned int *s32;
unsigned int *d32; unsigned int *d32;
unsigned short *d16;
unsigned char *d8;
LLOGLN(10, ("rdpCapture0:")); LLOGLN(10, ("rdpCapture1:"));
rv = TRUE; rv = TRUE;
min_width = min(dst_width, src_width); min_width = RDPMIN(dst_width, src_width);
min_height = min(dst_height, src_height); min_height = RDPMIN(dst_height, src_height);
rect.x1 = 0; rect.x1 = 0;
rect.y1 = 0; rect.y1 = 0;
@ -367,27 +365,69 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
*num_out_rects = num_regions; *num_out_rects = num_regions;
*out_rects = (BoxPtr) g_malloc(sizeof(BoxRec) * num_regions, 0); *out_rects = (BoxPtr) g_malloc(sizeof(BoxRec) * num_regions * 4, 0);
for (i = 0; i < num_regions; i++) index = 0;
while (index < num_regions)
{ {
rect = psrc_rects[i]; rect = psrc_rects[index];
width = rect.x2 - rect.x1; width = rect.x2 - rect.x1;
height = rect.y2 - rect.y1; height = rect.y2 - rect.y1;
width = (width + 15) & ~15; ex = ((width + 15) & ~15) - width;
height = (height + 15) & ~15; if (ex != 0)
rect.x2 = rect.x1 + width; {
rect.y2 = rect.y1 + height; rect.x2 += ex;
if (rect.x2 > min_width)
{
rect.x1 -= rect.x2 - min_width;
rect.x2 = min_width;
}
if (rect.x1 < 0)
{
rect.x1 += 16;
}
}
ey = ((height + 15) & ~15) - height;
if (ey != 0)
{
rect.y2 += ey;
if (rect.y2 > min_height)
{
rect.y1 -= rect.y2 - min_height;
rect.y2 = min_height;
}
if (rect.y1 < 0)
{
rect.y1 += 16;
}
}
#if 0
if (rect.x1 < 0)
{
LLOGLN(0, ("rdpCapture1: error"));
}
if (rect.y1 < 0)
{
LLOGLN(0, ("rdpCapture1: error"));
}
if (rect.x2 > min_width) if (rect.x2 > min_width)
{ {
rect.x2 = min_width; LLOGLN(0, ("rdpCapture1: error"));
rect.x1 = min_width - 16;
} }
if (rect.y2 > min_height) if (rect.y2 > min_height)
{ {
rect.y2 = min_height; LLOGLN(0, ("rdpCapture1: error"));
rect.y1 = min_height - 16;
} }
(*out_rects)[i] = rect; if ((rect.x2 - rect.x1) % 16 != 0)
{
LLOGLN(0, ("rdpCapture1: error"));
}
if ((rect.y2 - rect.y1) % 16 != 0)
{
LLOGLN(0, ("rdpCapture1: error"));
}
#endif
(*out_rects)[index] = rect;
index++;
} }
if ((src_format == XRDP_a8r8g8b8) && (dst_format == XRDP_a8b8g8r8)) if ((src_format == XRDP_a8r8g8b8) && (dst_format == XRDP_a8b8g8r8))
@ -395,10 +435,10 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
src_bytespp = 4; src_bytespp = 4;
dst_bytespp = 4; dst_bytespp = 4;
for (i = 0; i < num_regions; i++) for (index = 0; index < num_regions; index++)
{ {
/* get rect to copy */ /* get rect to copy */
rect = (*out_rects)[i]; rect = (*out_rects)[index];
/* get rect dimensions */ /* get rect dimensions */
width = rect.x2 - rect.x1; width = rect.x2 - rect.x1;
@ -411,11 +451,11 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
dst_rect = dst + dst_offset; dst_rect = dst + dst_offset;
/* copy one line at a time */ /* copy one line at a time */
for (j = 0; j < height; j++) for (jndex = 0; jndex < height; jndex++)
{ {
s32 = (unsigned int *) src_rect; s32 = (unsigned int *) src_rect;
d32 = (unsigned int *) dst_rect; d32 = (unsigned int *) dst_rect;
for (k = 0; k < width; k++) for (kndex = 0; kndex < width; kndex++)
{ {
SPLITCOLOR32(red, green, blue, *s32); SPLITCOLOR32(red, green, blue, *s32);
*d32 = COLOR24(red, green, blue); *d32 = COLOR24(red, green, blue);
@ -427,8 +467,12 @@ rdpCapture1(RegionPtr in_reg, BoxPtr *out_rects, int *num_out_rects,
} }
} }
} }
else
return FALSE; {
LLOGLN(0, ("rdpCapture1: unimp color conversion"));
}
rdpRegionUninit(&reg);
return rv;
} }
/** /**

Loading…
Cancel
Save