소스 검색

audio: disable NEON converters for now.

To be revisited after 2.0.9 ships!

(doesn't fix Bugzilla #4186, but stops the regression for the time being.)
Ryan C. Gordon 7 년 전
부모
커밋
56ec349d2a
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/audio/SDL_audiotypecvt.c

+ 2 - 1
src/audio/SDL_audiotypecvt.c

@@ -25,7 +25,8 @@
 #include "SDL_cpuinfo.h"
 #include "SDL_assert.h"
 
-#ifdef __ARM_NEON__
+/* !!! FIXME: disabled until we fix https://bugzilla.libsdl.org/show_bug.cgi?id=4186 */
+#if 0 /*def __ARM_NEON__*/
 #define HAVE_NEON_INTRINSICS 1
 #endif