From 7cde6722b01732e5a897771b56bf8d13719153ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20K=C3=B6nig?= Date: Mon, 25 Apr 2011 10:33:48 +0200 Subject: [PATCH] xvmc: futher optimize ycbcr upload --- .../state_trackers/xorg/xvmc/surface.c | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/gallium/state_trackers/xorg/xvmc/surface.c b/src/gallium/state_trackers/xorg/xvmc/surface.c index fc4593dbc5f..a80515839ee 100644 --- a/src/gallium/state_trackers/xorg/xvmc/surface.c +++ b/src/gallium/state_trackers/xorg/xvmc/surface.c @@ -150,12 +150,15 @@ UploadYcbcrBlocks(XvMCSurfacePrivate *surface, enum pipe_mpeg12_dct_intra intra; enum pipe_mpeg12_dct_type coding; - unsigned tb, x, y; + unsigned tb, x, y, luma_blocks; short *blocks; assert(surface); assert(xvmc_mb); + if (!xvmc_mb->coded_block_pattern) + return; + intra = xvmc_mb->macroblock_type & XVMC_MB_TYPE_INTRA ? PIPE_MPEG12_DCT_INTRA : PIPE_MPEG12_DCT_DELTA; @@ -164,7 +167,7 @@ UploadYcbcrBlocks(XvMCSurfacePrivate *surface, blocks = xvmc_blocks->blocks + xvmc_mb->index * BLOCK_SIZE_SAMPLES; - for (y = 0; y < 2; ++y) { + for (y = 0, luma_blocks = 0; y < 2; ++y) { for (x = 0; x < 2; ++x, ++tb) { if (xvmc_mb->coded_block_pattern & const_empty_block_mask_420[0][y][x]) { @@ -174,16 +177,20 @@ UploadYcbcrBlocks(XvMCSurfacePrivate *surface, stream->intra = intra; stream->coding = coding; - memcpy(surface->ycbcr[0].buffer, blocks, BLOCK_SIZE_BYTES); - surface->ycbcr[0].num_blocks_added++; surface->ycbcr[0].stream++; - surface->ycbcr[0].buffer += BLOCK_SIZE_SAMPLES; - blocks += BLOCK_SIZE_SAMPLES; + + luma_blocks++; } } } + if (luma_blocks > 0) { + memcpy(surface->ycbcr[0].buffer, blocks, BLOCK_SIZE_BYTES * luma_blocks); + surface->ycbcr[0].buffer += BLOCK_SIZE_SAMPLES * luma_blocks; + blocks += BLOCK_SIZE_SAMPLES * luma_blocks; + } + /* TODO: Implement 422, 444 */ //assert(ctx->base.chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420); @@ -224,7 +231,8 @@ MacroBlocksToPipe(XvMCSurfacePrivate *surface, unsigned mv_pos = xvmc_mb->x + surface->mv_stride * xvmc_mb->y; unsigned mv_weights[2]; - UploadYcbcrBlocks(surface, xvmc_mb, xvmc_blocks); + if (xvmc_mb->macroblock_type & (XVMC_MB_TYPE_PATTERN | XVMC_MB_TYPE_INTRA)) + UploadYcbcrBlocks(surface, xvmc_mb, xvmc_blocks); MacroBlockTypeToPipeWeights(xvmc_mb, mv_weights); -- 2.30.2