From 94191b5c82c429b5ba4fa8ca44bfb770ca52348c Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Mon, 29 Apr 2013 12:43:38 -0700 Subject: Separate I4X4_PRED coding from macroblock modules Separate the functionality of I4X4_PRED from decode_mb. Use decode_atom_intra instead, to enable recursive partition of superblock down to 8x8. Change-Id: Ifc89a3be82225398954169d0a839abdbbfd8ca3b --- vp9/decoder/vp9_decodframe.c | 71 +++++++++++++++++++++++++------------------- 1 file changed, 41 insertions(+), 30 deletions(-) (limited to 'vp9/decoder/vp9_decodframe.c') diff --git a/vp9/decoder/vp9_decodframe.c b/vp9/decoder/vp9_decodframe.c index 9e5c341af..27eb4b10f 100644 --- a/vp9/decoder/vp9_decodframe.c +++ b/vp9/decoder/vp9_decodframe.c @@ -300,7 +300,6 @@ static INLINE void dequant_add_y(MACROBLOCKD *xd, TX_TYPE tx_type, int idx) { } } - static void decode_4x4(VP9D_COMP *pbi, MACROBLOCKD *xd, vp9_reader *r) { TX_TYPE tx_type; int i = 0; @@ -338,32 +337,6 @@ static void decode_4x4(VP9D_COMP *pbi, MACROBLOCKD *xd, vp9_reader *r) { dst, xd->plane[1].dst.stride, xd->plane[2].eobs[i]); } - } else if (mode == I4X4_PRED) { - for (i = 0; i < 16; i++) { - int b_mode = xd->mode_info_context->bmi[i].as_mode.first; - uint8_t* dst; - dst = raster_block_offset_uint8(xd, BLOCK_SIZE_MB16X16, 0, i, - xd->plane[0].dst.buf, - xd->plane[0].dst.stride); -#if CONFIG_NEWBINTRAMODES - xd->mode_info_context->bmi[i].as_mode.context = - vp9_find_bpred_context(xd, i, dst, xd->plane[0].dst.stride); - if (!xd->mode_info_context->mbmi.mb_skip_coeff) - vp9_decode_coefs_4x4(pbi, xd, r, PLANE_TYPE_Y_WITH_DC, i); -#endif - vp9_intra4x4_predict(xd, i, b_mode, dst, xd->plane[0].dst.stride); - tx_type = get_tx_type_4x4(xd, i); - dequant_add_y(xd, tx_type, i); - } -#if CONFIG_NEWBINTRAMODES - if (!xd->mode_info_context->mbmi.mb_skip_coeff) - vp9_decode_mb_tokens_4x4_uv(pbi, xd, r); -#endif - vp9_build_intra_predictors_sbuv_s(xd, BLOCK_SIZE_MB16X16); - xd->itxm_add_uv_block(xd->plane[1].qcoeff, xd->plane[1].dst.buf, - xd->plane[1].dst.stride, xd->plane[1].eobs); - xd->itxm_add_uv_block(xd->plane[2].qcoeff, xd->plane[2].dst.buf, - xd->plane[1].dst.stride, xd->plane[2].eobs); } else if (mode == SPLITMV || get_tx_type_4x4(xd, 0) == DCT_DCT) { xd->itxm_add_y_block(xd->plane[0].qcoeff, xd->plane[0].dst.buf, xd->plane[0].dst.stride, xd); @@ -437,6 +410,38 @@ static void decode_block(int plane, int block, BLOCK_SIZE_TYPE bsize, } } +static void decode_atom_intra(VP9D_COMP *pbi, MACROBLOCKD *xd, + vp9_reader *r, + BLOCK_SIZE_TYPE bsize) { + int i = 0; + int bwl = b_width_log2(bsize), bhl = b_height_log2(bsize); + int bc = 1 << (bwl + bhl); + int tx_type; + + for (i = 0; i < bc; i++) { + int b_mode = xd->mode_info_context->bmi[i].as_mode.first; + uint8_t* dst; + dst = raster_block_offset_uint8(xd, bsize, 0, i, + xd->plane[0].dst.buf, + xd->plane[0].dst.stride); +#if CONFIG_NEWBINTRAMODES + xd->mode_info_context->bmi[i].as_mode.context = + vp9_find_bpred_context(xd, i, dst, xd->plane[0].dst.stride); + if (!xd->mode_info_context->mbmi.mb_skip_coeff) + vp9_decode_coefs_4x4(pbi, xd, r, PLANE_TYPE_Y_WITH_DC, i); +#endif + vp9_intra4x4_predict(xd, i, b_mode, dst, xd->plane[0].dst.stride); + // TODO(jingning): refactor to use foreach_transformed_block_in_plane_ + tx_type = get_tx_type_4x4(xd, i); + dequant_add_y(xd, tx_type, i); + } +#if CONFIG_NEWBINTRAMODES + if (!xd->mode_info_context->mbmi.mb_skip_coeff) + vp9_decode_mb_tokens_4x4_uv(pbi, xd, r); +#endif + foreach_transformed_block_uv(xd, bsize, decode_block, xd); +} + static void decode_sb(VP9D_COMP *pbi, MACROBLOCKD *xd, int mi_row, int mi_col, vp9_reader *r, BLOCK_SIZE_TYPE bsize) { const int bwl = mi_width_log2(bsize), bhl = mi_height_log2(bsize); @@ -545,7 +550,12 @@ static void decode_mb(VP9D_COMP *pbi, MACROBLOCKD *xd, } else if (tx_size == TX_8X8) { decode_8x8(xd); } else { - decode_4x4(pbi, xd, r); + if (mbmi->mode == I4X4_PRED) + // TODO(jingning): we need to move this to decode_atom later and + // deprecate decode_mb, when SB8X8 is on. + decode_atom_intra(pbi, xd, r, BLOCK_SIZE_MB16X16); + else + decode_4x4(pbi, xd, r); } } @@ -671,10 +681,11 @@ static void decode_modes_b(VP9D_COMP *pbi, int mi_row, int mi_col, set_refs(pbi, mi_row, mi_col); // TODO(jingning): merge decode_sb_ and decode_mb_ - if (bsize > BLOCK_SIZE_MB16X16) + if (bsize > BLOCK_SIZE_MB16X16) { decode_sb(pbi, xd, mi_row, mi_col, r, bsize); - else + } else { decode_mb(pbi, xd, mi_row, mi_col, r); + } xd->corrupted |= vp9_reader_has_error(r); } -- cgit v1.2.3