summaryrefslogtreecommitdiff
path: root/vp8/encoder
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-07-16 15:25:59 -0700
committerRonald S. Bultje <rbultje@google.com>2012-07-16 15:25:59 -0700
commitda8159a479deea42a01733c0fddd46994a2fc6a9 (patch)
treea7515afe3229dbdc5fbdab73bb9ff792b8345140 /vp8/encoder
parent6c0b21c0751471082895f8fe45198407ee62b7fa (diff)
downloadlibvpx-da8159a479deea42a01733c0fddd46994a2fc6a9.tar
libvpx-da8159a479deea42a01733c0fddd46994a2fc6a9.tar.gz
libvpx-da8159a479deea42a01733c0fddd46994a2fc6a9.tar.bz2
libvpx-da8159a479deea42a01733c0fddd46994a2fc6a9.zip
Add missing mv_{col,row}_{min,max}_sb variables to MACROBLOCK struct.
This allows CONFIG_SUPERBLOCKS experiment to almost compile succesfully, except for the missing pick_sb_modes() function. Change-Id: Ib2322f2aacdc371e8066f2eb4a8d761c40490b4d
Diffstat (limited to 'vp8/encoder')
-rw-r--r--vp8/encoder/block.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/vp8/encoder/block.h b/vp8/encoder/block.h
index 3652ede3b..45f157703 100644
--- a/vp8/encoder/block.h
+++ b/vp8/encoder/block.h
@@ -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;