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

Unified Diff: webrtc/common_audio/fft4g.c

Issue 1172163004: Reformat existing code. There should be no functional effects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 6 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
Index: webrtc/common_audio/fft4g.c
diff --git a/webrtc/common_audio/fft4g.c b/webrtc/common_audio/fft4g.c
index ad5f383e695791048ddd3417060546fc90a1e4d2..24d45eb6b31ab650cfad278808b0354ce82689e1 100644
--- a/webrtc/common_audio/fft4g.c
+++ b/webrtc/common_audio/fft4g.c
@@ -289,7 +289,9 @@ Appendix :
static void makewt(int nw, int *ip, float *w);
static void makect(int nc, int *ip, float *c);
static void bitrv2(int n, int *ip, float *a);
+#if 0 // Not used.
static void bitrv2conj(int n, int *ip, float *a);
+#endif
static void cftfsub(int n, float *a, float *w);
static void cftbsub(int n, float *a, float *w);
static void cft1st(int n, float *a, float *w);
@@ -302,6 +304,7 @@ static void dstsub(int n, float *a, int nc, float *c)
#endif
+#if 0 // Not used.
void WebRtc_cdft(int n, int isgn, float *a, int *ip, float *w)
{
if (n > (ip[0] << 2)) {
@@ -319,6 +322,7 @@ void WebRtc_cdft(int n, int isgn, float *a, int *ip, float *w)
cftfsub(n, a, w);
}
}
+#endif
void WebRtc_rdft(int n, int isgn, float *a, int *ip, float *w)
@@ -789,7 +793,7 @@ static void bitrv2(int n, int *ip, float *a)
}
}
-
+#if 0 // Not used.
static void bitrv2conj(int n, int *ip, float *a)
{
int j, j1, k, k1, l, m, m2;
@@ -897,7 +901,7 @@ static void bitrv2conj(int n, int *ip, float *a)
}
}
}
-
+#endif
static void cftfsub(int n, float *a, float *w)
{

Powered by Google App Engine
This is Rietveld 408576698