move empty block mask into mpeg12 context

This commit is contained in:
Christian König 2011-03-17 20:13:51 +01:00
parent a1fecd09c2
commit 1d72cf6986
4 changed files with 14 additions and 14 deletions

View File

@ -40,6 +40,12 @@
#define NUM_BUFFERS 2
static const unsigned const_empty_block_mask_420[3][2][2] = {
{ { 0x20, 0x10 }, { 0x08, 0x04 } },
{ { 0x02, 0x02 }, { 0x02, 0x02 } },
{ { 0x01, 0x01 }, { 0x01, 0x01 } }
};
static void
flush_buffer(struct vl_mpeg12_context *ctx)
{
@ -161,7 +167,7 @@ upload_buffer(struct vl_mpeg12_context *ctx,
for (y = 0; y < 2; ++y) {
for (x = 0; x < 2; ++x, ++tb) {
if (mb->cbp & (*ctx->mc_renderer.empty_block_mask)[0][y][x]) {
if (mb->cbp & (*ctx->empty_block_mask)[0][y][x]) {
vl_idct_add_block(&buffer->idct_y, mb->mbx * 2 + x, mb->mby * 2 + y, blocks);
blocks += BLOCK_WIDTH * BLOCK_HEIGHT;
}
@ -172,7 +178,7 @@ upload_buffer(struct vl_mpeg12_context *ctx,
assert(ctx->base.chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420);
for (tb = 1; tb < 3; ++tb) {
if (mb->cbp & (*ctx->mc_renderer.empty_block_mask)[tb][0][0]) {
if (mb->cbp & (*ctx->empty_block_mask)[tb][0][0]) {
if(tb == 1)
vl_idct_add_block(&buffer->idct_cb, mb->mbx, mb->mby, blocks);
else
@ -289,7 +295,7 @@ vl_mpeg12_decode_macroblocks(struct pipe_video_context *vpipe,
for ( i = 0; i < num_macroblocks; ++i ) {
vl_vb_add_block(&ctx->cur_buffer->vertex_stream, &mpeg12_macroblocks[i],
ctx->mc_renderer.empty_block_mask);
ctx->empty_block_mask);
upload_buffer(ctx, ctx->cur_buffer, &mpeg12_macroblocks[i]);
}
@ -664,6 +670,10 @@ vl_create_mpeg12_context(struct pipe_context *pipe,
return NULL;
}
/* TODO: Implement 422, 444 */
assert(chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420);
ctx->empty_block_mask = &const_empty_block_mask_420;
if (!(idct_matrix = vl_idct_upload_matrix(ctx->pipe)))
return false;

View File

@ -41,6 +41,7 @@ struct vl_mpeg12_context
struct pipe_video_context base;
struct pipe_context *pipe;
struct pipe_surface *decode_target;
const unsigned (*empty_block_mask)[3][2][2];
struct pipe_vertex_buffer quads;
unsigned vertex_buffer_size;

View File

@ -56,12 +56,6 @@ enum VS_OUTPUT
VS_O_MV3
};
static const unsigned const_empty_block_mask_420[3][2][2] = {
{ { 0x20, 0x10 }, { 0x08, 0x04 } },
{ { 0x02, 0x02 }, { 0x02, 0x02 } },
{ { 0x01, 0x01 }, { 0x01, 0x01 } }
};
static void *
create_vert_shader(struct vl_mpeg12_mc_renderer *r)
{
@ -537,10 +531,6 @@ vl_mpeg12_mc_renderer_init(struct vl_mpeg12_mc_renderer *renderer,
renderer->buffer_height = buffer_height;
renderer->chroma_format = chroma_format;
/* TODO: Implement 422, 444 */
assert(chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420);
renderer->empty_block_mask = &const_empty_block_mask_420;
renderer->texview_map = util_new_keymap(sizeof(struct pipe_surface*), -1,
texview_map_delete);
if (!renderer->texview_map)

View File

@ -43,7 +43,6 @@ struct vl_mpeg12_mc_renderer
unsigned buffer_width;
unsigned buffer_height;
enum pipe_video_chroma_format chroma_format;
const unsigned (*empty_block_mask)[3][2][2];
struct pipe_viewport_state viewport;
struct pipe_framebuffer_state fb_state;