summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decodframe.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-04-19 10:45:50 -0700
committerJohn Koleszar <jkoleszar@google.com>2013-04-22 08:20:54 -0700
commit6d5ac8f2e1ad259b66928e854904c2c2e6656084 (patch)
tree6347933daef7ee728c07ee7ff3adeea3cb949061 /vp9/decoder/vp9_decodframe.c
parentf82c61b8862f258bde802dd2a509a8718a718a6b (diff)
downloadlibvpx-6d5ac8f2e1ad259b66928e854904c2c2e6656084.tar
libvpx-6d5ac8f2e1ad259b66928e854904c2c2e6656084.tar.gz
libvpx-6d5ac8f2e1ad259b66928e854904c2c2e6656084.tar.bz2
libvpx-6d5ac8f2e1ad259b66928e854904c2c2e6656084.zip
reconinter: remove unnecessary functions, params
Removes the redundant dst pointers from vp9_build_inter_predictors_sb{y,uv} and the remaining mb specific functions. Change-Id: I7b6bf439d9394b85ea79b4fe61a3ffc1025720da
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 fdd40db46..6ceb94253 100644
--- a/vp9/decoder/vp9_decodframe.c
+++ b/vp9/decoder/vp9_decodframe.c
@@ -717,7 +717,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(xd, mb_row, mb_col);
+ vp9_build_inter_predictors_sb(xd, mb_row, mb_col, BLOCK_SIZE_MB16X16);
}
if (xd->mode_info_context->mbmi.mb_skip_coeff) {