aboutsummaryrefslogtreecommitdiff
path: root/modules/cmath~.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-08-27 22:27:30 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-08-27 22:27:30 +0000
commit32e228d1ca60d479025f5c10479ac866208e11ae (patch)
treecf385e8307a13586f2f4914c87830931cd98183e /modules/cmath~.c
parent709180b16be4653de4f57964b653737c3254a0fd (diff)
merged in relevant changes from the v0-40 pd-extended release branch
svn path=/trunk/externals/creb/; revision=10266
Diffstat (limited to 'modules/cmath~.c')
-rw-r--r--modules/cmath~.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/cmath~.c b/modules/cmath~.c
index 3bd63a9..5526b9f 100644
--- a/modules/cmath~.c
+++ b/modules/cmath~.c
@@ -35,8 +35,8 @@ static t_int *cmath_perform_clog(t_int *w)
{
t_float *inx = (float *)(w[2]);
t_float *iny = (float *)(w[3]);
- t_float *outx = (float *)(w[4]);
- t_float *outy = (float *)(w[5]);
+ t_float *outx = (float *)(w[5]); // clockwize addressing
+ t_float *outy = (float *)(w[4]);
t_int i;
t_int n = (t_int)(w[1]);
t_float x;
@@ -61,8 +61,8 @@ static t_int *cmath_perform_cexp(t_int *w)
{
t_float *inx = (float *)(w[2]);
t_float *iny = (float *)(w[3]);
- t_float *outx = (float *)(w[4]);
- t_float *outy = (float *)(w[5]);
+ t_float *outx = (float *)(w[5]); // clockwize addressing
+ t_float *outy = (float *)(w[4]);
t_int i;
t_int n = (t_int)(w[1]);
t_float x;
@@ -82,8 +82,8 @@ static t_int *cmath_perform_nfft(t_int *w)
{
t_float *inx = (float *)(w[2]);
t_float *iny = (float *)(w[3]);
- t_float *outx = (float *)(w[4]);
- t_float *outy = (float *)(w[5]);
+ t_float *outx = (float *)(w[5]); // clockwize addressing
+ t_float *outy = (float *)(w[4]);
t_int i;
t_int n = (t_int)(w[1]);
t_float x;
@@ -105,8 +105,8 @@ static t_int *cmath_perform_nifft(t_int *w)
{
t_float *inx = (float *)(w[2]);
t_float *iny = (float *)(w[3]);
- t_float *outx = (float *)(w[4]);
- t_float *outy = (float *)(w[5]);
+ t_float *outx = (float *)(w[5]); // clockwize addressing
+ t_float *outy = (float *)(w[4]);
t_int i;
t_int n = (t_int)(w[1]);
t_float x;