X86 doesn't have detection routines so map to default FFT routines.

For X86, just #define the detection routines to the default
routines. This makes the API the same for x86 and arm.

BUG=
R=andrew@webrtc.org, xingnan.wang@chromium.org

Review URL: https://webrtc-codereview.appspot.com/4749004

git-svn-id: http://webrtc.googlecode.com/svn/deps/third_party/openmax@5205 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/dl/sp/api/omxSP.h b/dl/sp/api/omxSP.h
index b0030c6..5a7980a 100644
--- a/dl/sp/api/omxSP.h
+++ b/dl/sp/api/omxSP.h
@@ -2273,6 +2273,8 @@
     OMX_F32* pDst,
     const OMXFFTSpec_R_F32* pFFTSpec
 );
+#else
+#define omxSP_FFTFwd_RToCCS_F32 omxSP_FFTFwd_RToCCS_F32_Sfs
 #endif
 
 /**
@@ -2484,6 +2486,8 @@
     const OMX_F32* pSrc,
     OMX_F32* pDst,
     const OMXFFTSpec_R_F32* pFFTSpec);
+#else
+#define omxSP_FFTInv_CCSToR_F32 omxSP_FFTInv_CCSToR_F32_Sfs    
 #endif
 
 #ifdef __cplusplus