ref: cc7ce531403ee5abd297a578e0ba417fc6a10744
parent: 6579720e6aa9e568bd876d2592d52831de1bf7b3
parent: 94297863bff486c04cea49655a880b334c4ba7d2
author: Ronald S. Bultje <rbultje@google.com>
date: Wed Apr 24 07:45:13 EDT 2013
Merge "Add basic building blocks for 8x8 superblocks experiment." into experimental
--- a/configure
+++ b/configure
@@ -250,6 +250,7 @@
sbsegment
multiple_arf
code_zerogroup
+ sb8x8
"
CONFIG_LIST="
external_build
--- a/vp9/common/vp9_enums.h
+++ b/vp9/common/vp9_enums.h
@@ -14,6 +14,13 @@
#include "./vpx_config.h"
typedef enum BLOCK_SIZE_TYPE {
+#if CONFIG_SB8X8
+ BLOCK_SIZE_SB8X8,
+#if CONFIG_SBSEGMENT
+ BLOCK_SIZE_SB8X16,
+ BLOCK_SIZE_SB16X8,
+#endif
+#endif
BLOCK_SIZE_MB16X16,
#if CONFIG_SBSEGMENT
BLOCK_SIZE_SB16X32,
--
⑨