use RTCD pointer for intra4x4_predict

Change-Id: I4161389ff02aa37636540ac0fe0fe9763d52ebdc
This commit is contained in:
Johann 2012-07-31 14:12:32 -07:00
parent 1347b2ce0f
commit 3c208a5a5e
4 changed files with 9 additions and 7 deletions

View File

@ -300,9 +300,9 @@ void vp8_intra4x4_predict_c(unsigned char *src, int src_stride,
{
unsigned char *Above = src - src_stride;
vp8_intra4x4_predict_d_c(Above,
src - 1, src_stride,
b_mode,
dst, dst_stride,
Above[-1]);
vp8_intra4x4_predict_d(Above,
src - 1, src_stride,
b_mode,
dst, dst_stride,
Above[-1]);
}

View File

@ -145,6 +145,8 @@ prototype void vp8_build_intra_predictors_mbuv_s "struct macroblockd *x, unsigne
specialize vp8_build_intra_predictors_mbuv_s sse2 ssse3
prototype void vp8_intra4x4_predict_d "unsigned char *above, unsigned char *left, int left_stride, int b_mode, unsigned char *dst, int dst_stride, unsigned char top_left"
# No existing specializations
prototype void vp8_intra4x4_predict "unsigned char *src, int src_stride, int b_mode, unsigned char *dst, int dst_stride"
specialize vp8_intra4x4_predict media
vp8_intra4x4_predict_media=vp8_intra4x4_predict_armv6

View File

@ -199,7 +199,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd,
left_stride = dst_stride;
top_left = yabove[-1];
vp8_intra4x4_predict_d_c(yabove, yleft, left_stride,
vp8_intra4x4_predict_d(yabove, yleft, left_stride,
b_mode,
base_dst + b->offset, dst_stride,
top_left);

View File

@ -205,7 +205,7 @@ static void mt_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd,
else
top_left = yabove[-1];
vp8_intra4x4_predict_d_c(yabove, yleft, left_stride,
vp8_intra4x4_predict_d(yabove, yleft, left_stride,
b_mode,
base_dst + b->offset, dst_stride,
top_left);