]> granicus.if.org Git - libvpx/commitdiff
Add missing mv_{col,row}_{min,max}_sb variables to MACROBLOCK struct.
authorRonald S. Bultje <rbultje@google.com>
Mon, 16 Jul 2012 22:25:59 +0000 (15:25 -0700)
committerRonald S. Bultje <rbultje@google.com>
Mon, 16 Jul 2012 22:25:59 +0000 (15:25 -0700)
This allows CONFIG_SUPERBLOCKS experiment to almost compile succesfully,
except for the missing pick_sb_modes() function.

Change-Id: Ib2322f2aacdc371e8066f2eb4a8d761c40490b4d

vp8/encoder/block.h

index 3652ede3bd4f564b45f02e5a30b5a477b7ab3247..45f157703de8283fb0eca981e2a430717b193a51 100644 (file)
@@ -134,6 +134,12 @@ typedef struct
     int mv_col_max;
     int mv_row_min;
     int mv_row_max;
+#if CONFIG_SUPERBLOCKS
+    int mv_col_min_sb;
+    int mv_col_max_sb;
+    int mv_row_min_sb;
+    int mv_row_max_sb;
+#endif
 
     int skip;