Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c

Issue 1578463002: Fix return type to be void. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/deps/third_party/openmax.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c
diff --git a/dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c b/dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c
index eec05e9a9b5a53740967d02f701531f44ec40272..b767a0a852afd5303359831f429c74ccad851db5 100644
--- a/dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c
+++ b/dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c
@@ -66,7 +66,7 @@ extern void armSP_FFTInv_CToC_FC32_Radix8_fs_OutOfPlace(
/*
* Scale FFT data by 1/|length|. |length| must be a power of two
*/
-static inline ScaleFFTData(OMX_FC32* fftData, unsigned length) {
+static inline void ScaleFFTData(OMX_FC32* fftData, unsigned length) {
float32_t* data = (float32_t*)fftData;
float32_t scale = 1.0f / length;
« no previous file with comments | « dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698