shithub: libvpx

Download patch

ref: 07967b36b7752495bb828fec4b9f8a3bc07a015e
parent: ac8c069198c08c5ec0e5e7fb31b61e3a2dc883a3
author: Johann <johannkoenig@google.com>
date: Fri May 2 04:11:54 EDT 2014

vp9 register checks only apply to vp9

Disable register checks when vp9 is not configured. Soon vp8 assembly
will move to intrinsics, obviating this check.

This will still run the check when vp9 is enabled.

Change-Id: I90f50d22cb8c15e9c07f2c8e830e08de7fce0689

--- a/test/register_state_check.h
+++ b/test/register_state_check.h
@@ -82,8 +82,8 @@
 
 }  // namespace libvpx_test
 
-#elif defined(CONFIG_SHARED) && defined(HAVE_NEON) \
-      && !CONFIG_SHARED && HAVE_NEON
+#elif defined(CONFIG_SHARED) && defined(HAVE_NEON) && defined(CONFIG_VP9) \
+      && !CONFIG_SHARED && HAVE_NEON && CONFIG_VP9
 
 #include "vpx/vpx_integer.h"
 
--