From: Jingning Han Date: Thu, 6 Jun 2013 17:02:08 +0000 (-0700) Subject: Bug fix in rd_pick_inter_mode_sb_ X-Git-Tag: v1.3.0~1104^2~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d03e974fbd0d04c41609357f39442564f8707eb7;p=libvpx Bug fix in rd_pick_inter_mode_sb_ Fix the calculation of step size in height. Change-Id: I0e0c0175f141f5a41214ae51cef233d13942d3c5 --- diff --git a/vp9/encoder/vp9_rdopt.c b/vp9/encoder/vp9_rdopt.c index 1dde0de35..b5b968bda 100644 --- a/vp9/encoder/vp9_rdopt.c +++ b/vp9/encoder/vp9_rdopt.c @@ -2552,7 +2552,7 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x, PARTITION_INFO best_partition; int bwsl = b_width_log2(bsize); int bws = (1 << bwsl) / 4; // mode_info step for subsize - int bhsl = b_width_log2(bsize); + int bhsl = b_height_log2(bsize); int bhs = (1 << bhsl) / 4; // mode_info step for subsize for (i = 0; i < 4; i++) {