shithub: libvpx

Download patch

ref: be380f200503e133423f81b55cfa28a2544eb704
parent: 26ab314176a4f4c64ba4c5b5c639870e258d8fe2
author: James Zern <[email protected]>
date: Thu May 28 19:38:53 EDT 2015

variance_neon: add missing include

vpx_ports/mem.h is necessary for MSVC __builtin_prefetch compatibility
macro

Change-Id: I210fad6c6b4545df1874d028b31f42018490b029

--- a/vpx_dsp/arm/variance_neon.c
+++ b/vpx_dsp/arm/variance_neon.c
@@ -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);