]> granicus.if.org Git - libvpx/commitdiff
Use INTER_OFFSET in vp9_pick_inter_mode
authorJingning Han <jingning@google.com>
Mon, 10 Feb 2014 20:54:56 +0000 (12:54 -0800)
committerJingning Han <jingning@google.com>
Wed, 12 Feb 2014 17:14:29 +0000 (09:14 -0800)
Cosmetic change to use pre-defined macros.

Change-Id: I93e9fa90113d0242599048940b39694660385a6f

vp9/common/vp9_blockd.h
vp9/encoder/vp9_pickmode.c

index f10a3c8c7b6f334d696b51a5defc8ab36c4c98f0..348aa640f02d3bd4cb2e06338afac6f00bf52c16 100644 (file)
@@ -89,7 +89,6 @@ static INLINE int is_inter_mode(MB_PREDICTION_MODE mode) {
 
 #define INTER_OFFSET(mode) ((mode) - NEARESTMV)
 
-
 /* For keyframes, intra block modes are predicted by the (already decoded)
    modes for the Y blocks to the left and above us; for interframes, there
    is a single probability table. */
index 512b6bf18a642dc326b0a07ec88b9c92c47736ea..3b4a7f6e4b674cc0358de116a92a463668f87f78 100644 (file)
@@ -199,7 +199,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
     clamp_mv2(&frame_mv[NEARMV][ref_frame].as_mv, xd);
 
     for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) {
-      int rate = cost[this_mode - NEARESTMV];
+      int rate = cost[INTER_OFFSET(this_mode)];
       int64_t dist;
 
       if (this_mode == NEWMV) {