64 int *is_packed_rgba,
uint8_t rgba_map_ptr[4])
73 if (*is_packed_rgba) {
75 for (i = 0; i < 4; i++)
76 dst_color[rgba_map[i]] = rgba_color[i];
81 for (i = 0; i < w; i++)
82 memcpy(line[0] + i * pixel_step[0], dst_color, pixel_step[0]);
84 memcpy(rgba_map_ptr, rgba_map,
sizeof(rgba_map[0]) * 4);
88 dst_color[0] =
RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
89 dst_color[1] =
RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
90 dst_color[2] =
RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
91 dst_color[3] = rgba_color[3];
93 for (plane = 0; plane < 4; plane++) {
95 int hsub1 = (plane == 1 || plane == 2) ? hsub : 0;
97 pixel_step[plane] = 1;
101 while(plane && line[plane-1])
105 memset(line[plane], dst_color[plane], line_size);
114 int hsub,
int vsub,
int x,
int y,
int w,
int h)
119 for (plane = 0; plane < 4 && dst[plane]; plane++) {
120 int hsub1 = plane == 1 || plane == 2 ? hsub : 0;
121 int vsub1 = plane == 1 || plane == 2 ? vsub : 0;
125 p = dst[plane] + (y >> vsub1) * dst_linesize[plane];
126 for (i = 0; i <
height; i++) {
127 memcpy(p + (x >> hsub1) * pixelstep[plane],
128 src[plane], width * pixelstep[plane]);
129 p += dst_linesize[plane];
135 uint8_t *
src[4],
int src_linesize[4],
int pixelstep[4],
136 int hsub,
int vsub,
int x,
int y,
int y2,
int w,
int h)
141 for (plane = 0; plane < 4 && dst[plane]; plane++) {
142 int hsub1 = plane == 1 || plane == 2 ? hsub : 0;
143 int vsub1 = plane == 1 || plane == 2 ? vsub : 0;
147 p = dst[plane] + (y >> vsub1) * dst_linesize[plane];
148 for (i = 0; i <
height; i++) {
149 memcpy(p + (x >> hsub1) * pixelstep[plane],
150 src[plane] + src_linesize[plane]*(i+(y2>>vsub1)), width * pixelstep[plane]);
151 p += dst_linesize[plane];
160 unsigned i, nb_planes = 0;
175 if (pixelstep[c->
plane] != 0 &&
179 if (pixelstep[c->
plane] >= 8)
185 memset(draw, 0,
sizeof(*draw));
203 if (rgba != color->
rgba)
204 memcpy(color->
rgba, rgba,
sizeof(color->
rgba));
208 for (i = 0; i < 4; i++)
209 color->
comp[0].
u8[rgba_map[i]] = rgba[i];
211 for (i = 0; i < 4; i++)
212 color->
comp[rgba_map[i]].
u8[0] = rgba[i];
219 color->
comp[3].
u8[0] = rgba[3];
222 color->
comp[1].
u8[0] = rgba[3];
225 "Color conversion not implemented for %s\n", draw->
desc->
name);
226 memset(color, 128,
sizeof(*color));
231 int plane,
int x,
int y)
234 (y >> draw->
vsub[plane]) * linesize[plane] +
239 uint8_t *dst[],
int dst_linesize[],
241 int dst_x,
int dst_y,
int src_x,
int src_y,
244 int plane,
y, wp, hp;
247 for (plane = 0; plane < draw->
nb_planes; plane++) {
248 p =
pointer_at(draw, src, src_linesize, plane, src_x, src_y);
249 q =
pointer_at(draw, dst, dst_linesize, plane, dst_x, dst_y);
252 for (y = 0; y < hp; y++) {
254 p += src_linesize[plane];
255 q += dst_linesize[plane];
261 uint8_t *dst[],
int dst_linesize[],
262 int dst_x,
int dst_y,
int w,
int h)
264 int plane, x,
y, wp, hp;
267 for (plane = 0; plane < draw->
nb_planes; plane++) {
268 p0 =
pointer_at(draw, dst, dst_linesize, plane, dst_x, dst_y);
275 for (x = 0; x < wp; x++) {
281 p = p0 + dst_linesize[plane];
282 for (y = 1; y < hp; y++) {
284 p += dst_linesize[plane];
315 int mask = (1 << sub) - 1;
317 *start = (-*x) & mask;
319 *start =
FFMIN(*start, *w);
327 return (draw->
comp_mask[plane] >> comp) & 1;
334 int dx,
int w,
unsigned hsub,
int left,
int right)
336 unsigned asrc = alpha *
src;
337 unsigned tau = 0x1010101 -
alpha;
341 unsigned suba = (left *
alpha) >> hsub;
342 *dst = (*dst * (0x1010101 - suba) + src * suba) >> 24;
345 for (x = 0; x < w; x++) {
346 *dst = (*dst * tau + asrc) >> 24;
350 unsigned suba = (right *
alpha) >> hsub;
351 *dst = (*dst * (0x1010101 - suba) + src * suba) >> 24;
356 uint8_t *dst[],
int dst_linesize[],
357 int dst_w,
int dst_h,
358 int x0,
int y0,
int w,
int h)
360 unsigned alpha, nb_planes, nb_comp, plane,
comp;
361 int w_sub, h_sub, x_sub, y_sub, left, right, top, bottom,
y;
367 if (w <= 0 || h <= 0 || !color->rgba[3])
370 alpha = 0x10203 * color->
rgba[3] + 0x2;
372 for (plane = 0; plane < nb_planes; plane++) {
374 p0 =
pointer_at(draw, dst, dst_linesize, plane, x0, y0);
381 for (comp = 0; comp < nb_comp; comp++) {
388 draw->
hsub[plane], left, right);
389 p += dst_linesize[plane];
391 for (y = 0; y < h_sub; y++) {
394 draw->
hsub[plane], left, right);
395 p += dst_linesize[plane];
400 draw->
hsub[plane], left, right);
407 unsigned w,
unsigned h,
unsigned shift,
unsigned xm0)
409 unsigned xm, x,
y, t = 0;
410 unsigned xmshf = 3 - l2depth;
411 unsigned xmmod = 7 >> l2depth;
412 unsigned mbits = (1 << (1 << l2depth)) - 1;
413 unsigned mmult = 255 / mbits;
415 for (y = 0; y < h; y++) {
417 for (x = 0; x < w; x++) {
418 t += ((mask[xm >> xmshf] >> ((~xm & xmmod) << l2depth)) & mbits)
422 mask += mask_linesize;
424 alpha = (t >>
shift) * alpha;
425 *dst = ((0x1010101 -
alpha) * *dst + alpha * src) >> 24;
430 uint8_t *
mask,
int mask_linesize,
int l2depth,
int w,
431 unsigned hsub,
unsigned vsub,
432 int xm,
int left,
int right,
int hband)
437 blend_pixel(dst, src, alpha, mask, mask_linesize, l2depth,
438 left, hband, hsub + vsub, xm);
442 for (x = 0; x < w; x++) {
443 blend_pixel(dst, src, alpha, mask, mask_linesize, l2depth,
444 1 << hsub, hband, hsub + vsub, xm);
449 blend_pixel(dst, src, alpha, mask, mask_linesize, l2depth,
450 right, hband, hsub + vsub, xm);
454 uint8_t *dst[],
int dst_linesize[],
int dst_w,
int dst_h,
455 uint8_t *
mask,
int mask_linesize,
int mask_w,
int mask_h,
456 int l2depth,
unsigned endianness,
int x0,
int y0)
458 unsigned alpha, nb_planes, nb_comp, plane,
comp;
459 int xm0, ym0, w_sub, h_sub, x_sub, y_sub, left, right, top, bottom,
y;
464 mask += ym0 * mask_linesize;
465 if (mask_w <= 0 || mask_h <= 0 || !color->rgba[3])
469 alpha = (0x10307 * color->
rgba[3] + 0x3) >> 8;
471 for (plane = 0; plane < nb_planes; plane++) {
473 p0 =
pointer_at(draw, dst, dst_linesize, plane, x0, y0);
480 for (comp = 0; comp < nb_comp; comp++) {
487 color->
comp[plane].
u8[comp], alpha,
488 m, mask_linesize, l2depth, w_sub,
489 draw->
hsub[plane], draw->
vsub[plane],
490 xm0, left, right, top);
491 p += dst_linesize[plane];
492 m += top * mask_linesize;
494 for (y = 0; y < h_sub; y++) {
496 color->
comp[plane].
u8[comp], alpha,
497 m, mask_linesize, l2depth, w_sub,
498 draw->
hsub[plane], draw->
vsub[plane],
499 xm0, left, right, 1 << draw->
vsub[plane]);
500 p += dst_linesize[plane];
501 m += mask_linesize << draw->
vsub[plane];
505 color->
comp[plane].
u8[comp], alpha,
506 m, mask_linesize, l2depth, w_sub,
507 draw->
hsub[plane], draw->
vsub[plane],
508 xm0, left, right, bottom);
521 value += round_dir ? (1 <<
shift) - 1 : 1 << (shift - 1);
522 return (value >> shift) <<
shift;
553 printf(
"Testing %s...%*s", desc->
name,
554 (
int)(16 - strlen(desc->
name)),
"");
559 printf(
"no: %s\n", buf);
563 for (i = 0; i <
sizeof(
color); i++)
564 if (((
uint8_t *)&color)[i] != 128)
566 if (i ==
sizeof(color)) {
567 printf(
"fallback color\n");