summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decodframe.c
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2013-04-15 09:31:27 -0700
committerJingning Han <jingning@google.com>2013-04-18 14:59:36 -0700
commit6f43ff5824e16a4c0bbbcc890c5e54e74755447f (patch)
tree013431a1072acc3510fa40e53b48feb3b8310264 /vp9/decoder/vp9_decodframe.c
parent38f6232118a7aebdcc062ae0a10e59a32b6fdef8 (diff)
downloadlibvpx-6f43ff5824e16a4c0bbbcc890c5e54e74755447f.tar
libvpx-6f43ff5824e16a4c0bbbcc890c5e54e74755447f.tar.gz
libvpx-6f43ff5824e16a4c0bbbcc890c5e54e74755447f.tar.bz2
libvpx-6f43ff5824e16a4c0bbbcc890c5e54e74755447f.zip
Make the use of pred buffers consistent in MB/SB
Use in-place buffers (dst of MACROBLOCKD) for macroblock prediction. This makes the macroblock buffer handling consistent with those of superblock. Remove predictor buffer MACROBLOCKD. Change-Id: Id1bcd898961097b1e6230c10f0130753a59fc6df
Diffstat (limited to 'vp9/decoder/vp9_decodframe.c')
-rw-r--r--vp9/decoder/vp9_decodframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/decoder/vp9_decodframe.c b/vp9/decoder/vp9_decodframe.c
index d3b18d765..20d4f19c0 100644
--- a/vp9/decoder/vp9_decodframe.c
+++ b/vp9/decoder/vp9_decodframe.c
@@ -645,7 +645,7 @@ static void decode_mb(VP9D_COMP *pbi, MACROBLOCKD *xd,
xd->mode_info_context->mbmi.mode, tx_size,
xd->mode_info_context->mbmi.interp_filter);
#endif
- vp9_build_inter_predictors_mb_s(xd, mb_row, mb_col);
+ vp9_build_inter_predictors_mb(xd, mb_row, mb_col);
}
if (xd->mode_info_context->mbmi.mb_skip_coeff) {