ARMv6 optimized Intra4x4 prediction
Added ARM optimized intra 4x4 prediction - 2x faster on Profiler compared to C-code compiled with -O3 - Function interface changed a little to improve BLOCKD structure access Change-Id: I9bc2b723155943fe0cf03dd9ca5f1760f7a81f54
This commit is contained in:
@@ -211,7 +211,8 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd,
|
||||
int b_mode = xd->mode_info_context->bmi[i].as_mode;
|
||||
|
||||
RECON_INVOKE(RTCD_VTABLE(recon), intra4x4_predict)
|
||||
(b, b_mode, *(b->base_dst) + b->dst, b->dst_stride);
|
||||
( *(b->base_dst) + b->dst, b->dst_stride, b_mode,
|
||||
*(b->base_dst) + b->dst, b->dst_stride );
|
||||
|
||||
if (xd->eobs[i] )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user