From: Ronald S. Bultje Date: Tue, 23 Apr 2013 19:33:18 +0000 (-0700) Subject: Add basic building blocks for 8x8 superblocks experiment. X-Git-Tag: v1.3.0~1106^2~153^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94297863bff486c04cea49655a880b334c4ba7d2;p=libvpx Add basic building blocks for 8x8 superblocks experiment. Change-Id: I274a1d2e461e6ffdb106bac4ad6951692ace314e --- diff --git a/configure b/configure index 39dfaaa29..5c015b3d6 100755 --- a/configure +++ b/configure @@ -250,6 +250,7 @@ EXPERIMENT_LIST=" sbsegment multiple_arf code_zerogroup + sb8x8 " CONFIG_LIST=" external_build diff --git a/vp9/common/vp9_enums.h b/vp9/common/vp9_enums.h index 930a5975f..51a2a5fdc 100644 --- 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,