From: Johann Date: Fri, 2 May 2014 15:11:54 +0000 (-0700) Subject: vp9 register checks only apply to vp9 X-Git-Tag: v1.4.0~1681^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07967b36b7752495bb828fec4b9f8a3bc07a015e;p=libvpx 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 --- diff --git a/test/register_state_check.h b/test/register_state_check.h index 7e3d05351..5987fe31e 100644 --- a/test/register_state_check.h +++ b/test/register_state_check.h @@ -82,8 +82,8 @@ class RegisterStateCheck { } // 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"