From 0f194fc9e443ee6abd266737321655882e435970 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20K=C3=B6nig?= Date: Fri, 10 Feb 2012 12:56:27 +0100 Subject: [PATCH] st/vdpau: Use transfer_inline_write to upload ycbcr data MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Uses less code and looks at least a bit cleaner than mapping manually. Signed-off-by: Christian König --- src/gallium/state_trackers/vdpau/surface.c | 23 +++++----------------- 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/src/gallium/state_trackers/vdpau/surface.c b/src/gallium/state_trackers/vdpau/surface.c index 84467fdc0d2..a0ebe001aa8 100644 --- a/src/gallium/state_trackers/vdpau/surface.c +++ b/src/gallium/state_trackers/vdpau/surface.c @@ -239,24 +239,11 @@ vlVdpVideoSurfacePutBitsYCbCr(VdpVideoSurface surface, sv->texture->width0, sv->texture->height0, 1 }; - struct pipe_transfer *transfer; - void *map; - - transfer = pipe->get_transfer(pipe, sv->texture, 0, PIPE_TRANSFER_WRITE, &dst_box); - if (!transfer) - return VDP_STATUS_RESOURCES; - - map = pipe->transfer_map(pipe, transfer); - if (map) { - util_copy_rect(map, sv->texture->format, transfer->stride, 0, 0, - dst_box.width, dst_box.height, - source_data[i] + source_pitches[i] * j, - source_pitches[i] * sv->texture->depth0, - 0, 0); - } - - pipe->transfer_unmap(pipe, transfer); - pipe->transfer_destroy(pipe, transfer); + pipe->transfer_inline_write(pipe, sv->texture, 0, + PIPE_TRANSFER_WRITE, &dst_box, + source_data[i] + source_pitches[i] * j, + source_pitches[i] * sv->texture->depth0, + 0); } } -- 2.30.2