Skip to content

Commit edb7ad8

Browse files
committed
theoraplay: Enable NEON support on more compilers.
Newer GCCs define `__ARM_NEON` instead of `__ARM_NEON__`, apparently.
1 parent 28ea51d commit edb7ad8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thirdparty/theoraplay/theoraplay.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#define THEORAPLAY_MUTEX_T pthread_mutex_t *
3333
#endif
3434

35-
#ifdef __ARM_NEON__
35+
#if defined(__ARM_NEON__) || defined(__ARM_NEON)
3636
#include <arm_neon.h>
3737
#define THEORAPLAY_HAVE_NEON_INTRINSICS 1
3838
#endif

0 commit comments

Comments
 (0)