shithub: libvpx

Download patch

ref: 94297863bff486c04cea49655a880b334c4ba7d2
parent: 5ba98ebcf15ab91f9c54370ab020f7d5e3a8d8d4
author: Ronald S. Bultje <rbultje@google.com>
date: Tue Apr 23 08:33:18 EDT 2013

Add basic building blocks for 8x8 superblocks experiment.

Change-Id: I274a1d2e461e6ffdb106bac4ad6951692ace314e

--- 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,