From: Ronald S. Bultje Date: Thu, 25 Oct 2012 16:17:47 +0000 (-0700) Subject: Fix yet another typo in splitmv/tx_select code. X-Git-Tag: v1.3.0~1217^2~183 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c4f616a6183e9d2ff0fcb2dabd3b111c2bae4d3;p=libvpx Fix yet another typo in splitmv/tx_select code. Change-Id: I6a28cc87af275fc267b3cc8d90d642dcc870c249 --- diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c index b1594e7f0..b8e3efb01 100644 --- a/vp8/encoder/rdopt.c +++ b/vp8/encoder/rdopt.c @@ -2226,7 +2226,7 @@ static int64_t encode_inter_mb_segment_8x8(MACROBLOCK *x, } *distortion >>= 2; if (otherrd) { - othercost >>= 2; + otherdist >>= 2; *otherrd = RDCOST(x->rdmult, x->rddiv, othercost, otherdist); } return RDCOST(x->rdmult, x->rddiv, *labelyrate, *distortion);