Lines Matching defs:image
77 XVMC_MSG(XVMC_ERR, "[XvMC] Unrecognized Xv image ID 0x%08X.\n", xvimage_id);
83 XVMC_MSG(XVMC_ERR, "[XvMC] Unsupported 2D format %s for Xv image ID 0x%08X.\n", util_format_name(ret), xvimage_id);
101 XVMC_MSG(XVMC_ERR, "[XvMC] Unrecognized Xv image ID 0x%08X.\n", xvimage_id);
166 "[XvMC] image id=0x%08X\n" \
227 const struct pipe_box *dst_box, const XvImage *image,
239 src = image->data;
240 src += src_y * image->width + src_x;
241 if (image->id == FOURCC_AI44) {
245 for (i = 0; i < dst_box->height; i++, map += transfer->stride, src += image->width)
249 assert(image->id == FOURCC_IA44);
252 for (i = 0; i < dst_box->height; i++, map += transfer->stride, src += image->width)
409 Status XvMCCompositeSubpicture(Display *dpy, XvMCSubpicture *subpicture, XvImage *image,
426 assert(image);
428 if (subpicture->xvimage_id != image->id)
432 if (image->num_planes != 1)
440 says image->pitches[0] doesn't seems to be in bytes, so don't use it */
441 if ((image->id == FOURCC_IA44 || image->id == FOURCC_AI44) &&
443 upload_sampler_convert(pipe, subpicture_priv->sampler, &dst_box, image, srcx, srcy);
445 src_stride = image->width * util_format_get_blocksize(subpicture_priv->sampler->texture->format);
446 upload_sampler(pipe, subpicture_priv->sampler, &dst_box, image->data, src_stride, srcx, srcy);