variance_neon: add missing include
authorJames Zern <jzern@google.com>
Fri, 29 May 2015 06:38:53 +0000 (23:38 -0700)
committerJames Zern <jzern@google.com>
Fri, 29 May 2015 06:38:53 +0000 (23:38 -0700)
vpx_ports/mem.h is necessary for MSVC __builtin_prefetch compatibility
macro

Change-Id: I210fad6c6b4545df1874d028b31f42018490b029

vpx_dsp/arm/variance_neon.c

index 1a9792e..ede6e7b 100644 (file)
@@ -14,6 +14,7 @@
 #include "./vpx_config.h"
 
 #include "vpx/vpx_integer.h"
+#include "vpx_ports/mem.h"
 
 static INLINE int horizontal_add_s16x8(const int16x8_t v_16x8) {
   const int32x4_t a = vpaddlq_s16(v_16x8);