summaryrefslogtreecommitdiffstats
path: root/src/ffts_real_nd.c
diff options
context:
space:
mode:
authorAnthony Blake <anthonix@me.com>2012-11-16 15:45:17 +1300
committerAnthony Blake <anthonix@me.com>2012-11-16 15:45:17 +1300
commit15aeb7da259fe1561b779c02fbd5c3198d24fa28 (patch)
treeff24fe7fb1809a30dfad9342db66241d15290c3e /src/ffts_real_nd.c
parentc5cb9e53c35190075544a183e1dd37fa729f75bb (diff)
downloadffts-15aeb7da259fe1561b779c02fbd5c3198d24fa28.zip
ffts-15aeb7da259fe1561b779c02fbd5c3198d24fa28.tar.gz
Removed unneeded real transpose
Diffstat (limited to 'src/ffts_real_nd.c')
-rw-r--r--src/ffts_real_nd.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ffts_real_nd.c b/src/ffts_real_nd.c
index 0e68d1b..237c2f1 100644
--- a/src/ffts_real_nd.c
+++ b/src/ffts_real_nd.c
@@ -37,16 +37,6 @@
#include "neon.h"
#endif
-void ffts_scalar_transpose_r(float *in, float *out, int w, int h, uint64_t *buf) {
-
- size_t i,j;
- for(i=0;i<w;i+=1) {
- for(j=0;j<h;j+=1) {
- out[i*h + j] = in[j*w + i];
- }
- }
-
-}
void ffts_scalar_transpose(uint64_t *in, uint64_t *out, int w, int h, uint64_t *buf) {
size_t i,j;
OpenPOWER on IntegriCloud