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
This commit is contained in:
Johann 2014-05-02 08:11:54 -07:00
parent ac8c069198
commit 07967b36b7

View File

@ -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"