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

Unified Diff: dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.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 | « no previous file | dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c
diff --git a/dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c b/dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c
index 84de9cfa052e282e87b544e20cc2ee8956f82427..771c6714aa08d0af4c05678757421814f691f7e3 100644
--- a/dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c
+++ b/dl/sp/src/arm/arm64/omxSP_FFTInv_CCSToR_F32.c
@@ -72,7 +72,7 @@ extern void armSP_FFTInv_CCSToR_F32_preTwiddleRadix2(
/*
* Scale FFT data by 1/|length|. |length| must be a power of two
*/
-static inline ScaleRFFTData(OMX_F32* fftData, unsigned length) {
+static inline void ScaleRFFTData(OMX_F32* fftData, unsigned length) {
float32_t* data = (float32_t*)fftData;
float32_t scale = 2.0f / length;
« no previous file with comments | « no previous file | dl/sp/src/arm/arm64/omxSP_FFTInv_CToC_FC32.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698