Add missing include to transpose_neon.h
The file makes use of AOM_FORCE_INLINE but does not include the
definition from aom_integer.h, so compilation may fail if includes are
reordered elsewhere.
Change-Id: I82bf218c8315fd8c4e16aa279d6f0a29fe631fd6
diff --git a/aom_dsp/arm/transpose_neon.h b/aom_dsp/arm/transpose_neon.h
index 90ee9ba..b215f6a 100644
--- a/aom_dsp/arm/transpose_neon.h
+++ b/aom_dsp/arm/transpose_neon.h
@@ -13,6 +13,7 @@
#include <arm_neon.h>
+#include "aom/aom_integer.h" // For AOM_FORCE_INLINE.
#include "config/aom_config.h"
static INLINE void transpose_elems_inplace_u8_8x8(uint8x8_t *a0, uint8x8_t *a1,