Fixed wrong #define when compiling on ARM with non-NEON selection.
This CL fixes a (likely) typo/copy-paste issue when compiling on ARM
with NEON disabled.
R=andrew@webrtc.org, rtoy@google.com
Review URL: https://webrtc-codereview.appspot.com/38939004
git-svn-id: http://webrtc.googlecode.com/svn/deps/third_party/openmax@8304 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/dl/sp/api/omxSP.h b/dl/sp/api/omxSP.h
index 2c0306b..5a9ebe3 100644
--- a/dl/sp/api/omxSP.h
+++ b/dl/sp/api/omxSP.h
@@ -2554,8 +2554,8 @@
#define omxSP_FFTInv_CCSToR_F32 omxSP_FFTInv_CCSToR_F32_Sfs
#else
/* Build-time non-NEON selection. */
-#define omxSP_FFTFwd_RToCCS_F32 omxSP_FFTFwd_CCSToR_F32_vfp
-#define omxSP_FFTInv_CCSToR_F32 omxSP_FFTInv_CCSToR_F32_vfp
+#define omxSP_FFTFwd_RToCCS_F32 omxSP_FFTFwd_RToCCS_F32_Sfs_vfp
+#define omxSP_FFTInv_CCSToR_F32 omxSP_FFTInv_CCSToR_F32_Sfs_vfp
#endif /* defined(DL_ARM_NEON_OPTIONAL) */
#if defined(DL_ARM_NEON_OPTIONAL) || !defined(DL_ARM_NEON)