summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decodemv.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-07-12 16:25:23 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-07-12 16:25:23 -0700
commit3c94fffdb051d1c41c5d6ea1a616ccbc8baf54f2 (patch)
tree727e106452c7e2dc21ccb40fa76481e0dbd08d5c /vp9/decoder/vp9_decodemv.c
parent60969da5cb2006e25dbbe62d4f8defaa6ea95cfd (diff)
downloadlibvpx-3c94fffdb051d1c41c5d6ea1a616ccbc8baf54f2.tar
libvpx-3c94fffdb051d1c41c5d6ea1a616ccbc8baf54f2.tar.gz
libvpx-3c94fffdb051d1c41c5d6ea1a616ccbc8baf54f2.tar.bz2
libvpx-3c94fffdb051d1c41c5d6ea1a616ccbc8baf54f2.zip
Removing redundant call to set_mi_row_col.
This function is actually called from set_offsets which is called right before vp9_read_mode_info. Change-Id: Ibb9d5ad606194bc80eab264fad85b31c9dfd8f77
Diffstat (limited to 'vp9/decoder/vp9_decodemv.c')
-rw-r--r--vp9/decoder/vp9_decodemv.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/vp9/decoder/vp9_decodemv.c b/vp9/decoder/vp9_decodemv.c
index 22be55f23..56f43254e 100644
--- a/vp9/decoder/vp9_decodemv.c
+++ b/vp9/decoder/vp9_decodemv.c
@@ -473,12 +473,6 @@ static void read_inter_mode_info(VP9D_COMP *pbi, MODE_INFO *mi,
int idx, idy;
- // Distance of Mb to the various image edges.
- // These specified to 8th pel as they are always compared to MV values
- // that are in 1/8th pel units
- set_mi_row_col(cm, xd, mi_row, 1 << mi_height_log2(bsize),
- mi_col, 1 << mi_width_log2(bsize));
-
mbmi->segment_id = read_inter_segment_id(pbi, mi_row, mi_col, r);
mbmi->mb_skip_coeff = read_skip_coeff(pbi, mbmi->segment_id, r);
mbmi->ref_frame[0] = read_reference_frame(pbi, mbmi->segment_id, r);