Fix build failure with Android NDK
The version of gcc4.6 included with the Android NDK through r10b fails to compile this function. Replace it with C code. BUG=860 Change-Id: Ifcc0476664071aec46a171cdd5ad17305930986a
This commit is contained in:
parent
d174f2769e
commit
587ff646f6
@ -9,7 +9,17 @@
|
||||
*/
|
||||
|
||||
#include <arm_neon.h>
|
||||
#include "vpx_ports/arm.h"
|
||||
|
||||
#ifdef VPX_INCOMPATIBLE_GCC
|
||||
#include "./vp8_rtcd.h"
|
||||
void vp8_short_walsh4x4_neon(
|
||||
int16_t *input,
|
||||
int16_t *output,
|
||||
int pitch) {
|
||||
vp8_short_walsh4x4_c(input, output, pitch);
|
||||
}
|
||||
#else
|
||||
void vp8_short_walsh4x4_neon(
|
||||
int16_t *input,
|
||||
int16_t *output,
|
||||
@ -116,3 +126,4 @@ void vp8_short_walsh4x4_neon(
|
||||
vst1q_s16(output + 8, q1s16);
|
||||
return;
|
||||
}
|
||||
#endif // VPX_INCOMPATIBLE_GCC
|
||||
|
Loading…
x
Reference in New Issue
Block a user