File: wmdct.c

package info (click to toggle)
python-ltfatpy 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,412 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (175 lines) | stat: -rw-r--r-- 4,816 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#include "ltfat.h"
#include "ltfat_types.h"

#define CH(name) LTFAT_COMPLEXH(name)

#define POSTPROC_REAL \
  for (ltfatInt n=0;n<N*W;n+=2) \
  { \
     for (ltfatInt m=0;m<M;m+=2) \
     { \
       pcoef[m]=CH(creal)(pcoef2[m])+CH(cimag)(pcoef2[m]); \
       pcoef[m+M]=CH(creal)(pcoef2[m+M2])-CH(cimag)(pcoef2[m+M2]); \
     } \
     \
     for (ltfatInt m=1;m<M;m+=2) \
     { \
       pcoef[m]=CH(creal)(pcoef2[m])-CH(cimag)(pcoef2[m]); \
       pcoef[m+M]=CH(creal)(pcoef2[m+M2])+CH(cimag)(pcoef2[m+M2]); \
     } \
 \
     pcoef+=M2; \
     pcoef2+=M4; \
  }

#define POSTPROC_COMPLEX \
  for (ltfatInt n=0;n<N*W;n+=2) \
  { \
     for (ltfatInt m=0;m<M;m+=2) \
     { \
         pcoef[m] =   scalconst*(emipi4*pcoef2[m]  +eipi4*pcoef2[M2-1-m]); \
         pcoef[m+M] = scalconst*(eipi4*pcoef2[m+M2]+emipi4*pcoef2[M4-1-m]); \
     } \
 \
     for (ltfatInt m=1;m<M;m+=2) \
     { \
       pcoef[m] = scalconst*(eipi4*pcoef2[m]    +emipi4*pcoef2[M2-1-m]); \
       pcoef[m+M]=scalconst*(emipi4*pcoef2[m+M2]+eipi4*pcoef2[M4-1-m]); \
     } \
 \
     pcoef+=M2; \
     pcoef2+=M4; \
  }

#define PREPROC \
   for(ltfatInt n=0;n<L;n++) \
      f2[n] = (LTFAT_COMPLEX) cexp(-PI*I*n/(2.0*M)); \
   for(ltfatInt w=W-1;w>=0;w--) \
      for(ltfatInt n=0;n<L;n++) \
         f2[n+w*L] = f2[n]*f[n+w*L];


LTFAT_EXTERN void
LTFAT_NAME_COMPLEX(dwiltiii_long)(const LTFAT_COMPLEX *f, const LTFAT_COMPLEX *g,
                                  const ltfatInt L, const ltfatInt W,
                                  const ltfatInt M, LTFAT_COMPLEX *cout)
{
    const ltfatInt N = L / M;
    const ltfatInt M2 = 2 * M;
    const ltfatInt M4 = 4 * M;
    const LTFAT_REAL scalconst = 1.0 / sqrt(2.0);
    const LTFAT_COMPLEX eipi4 = cexp(I * PI / 4.0);
    const LTFAT_COMPLEX emipi4 = cexp(-I * PI / 4.0);

    LTFAT_COMPLEX *coef2 = ltfat_malloc(2 * M * N * W * sizeof * coef2);
    LTFAT_COMPLEX *f2 = ltfat_malloc(L * W * sizeof * f2);

    PREPROC

    LTFAT_NAME_COMPLEX(dgt_long)(f2, g, L, W, M, 2 * M, FREQINV, coef2);

    LTFAT_COMPLEX *pcoef  = cout;
    LTFAT_COMPLEX *pcoef2 = coef2;

    POSTPROC_COMPLEX

    LTFAT_SAFEFREEALL(coef2, f2);
}

LTFAT_EXTERN void
LTFAT_NAME_REAL(dwiltiii_long)(const LTFAT_REAL *f, const LTFAT_REAL *g,
                               const ltfatInt L, const ltfatInt W,
                               const ltfatInt M, LTFAT_REAL *cout)
{
    const ltfatInt N = L / M;
    const ltfatInt M2 = 2 * M;
    const ltfatInt M4 = 4 * M;

    LTFAT_COMPLEX *coef2 = ltfat_malloc(2 * M * N * W * sizeof * coef2);
    LTFAT_COMPLEX *f2 = ltfat_malloc(L * W * sizeof * f2);
    LTFAT_COMPLEX *g2 = ltfat_malloc(L * sizeof * g2);

    // Real to complex
    for (ltfatInt ii = 0; ii < L; ii++)
        g2[ii] = g[ii];

    PREPROC

    LTFAT_NAME_COMPLEX(dgt_long)(f2, g2, L, W, M, 2 * M, FREQINV, coef2);


    LTFAT_REAL *pcoef  = cout;
    LTFAT_COMPLEX *pcoef2 = coef2;

    POSTPROC_REAL

    LTFAT_SAFEFREEALL(coef2, f2, g2);

}

LTFAT_EXTERN void
LTFAT_NAME_COMPLEX(dwiltiii_fb)(const LTFAT_COMPLEX *f, const LTFAT_COMPLEX *g,
                                const ltfatInt L, const ltfatInt gl,
                                const ltfatInt W, const ltfatInt M,
                                LTFAT_COMPLEX *cout)
{
    const ltfatInt N = L / M;
    const ltfatInt M2 = 2 * M;
    const ltfatInt M4 = 4 * M;
    const LTFAT_REAL scalconst = 1.0 / sqrt(2.0);
    const LTFAT_COMPLEX eipi4 = cexp(I * PI / 4.0);
    const LTFAT_COMPLEX emipi4 = cexp(-I * PI / 4.0);

    LTFAT_COMPLEX *coef2 = ltfat_malloc(2 * M * N * W * sizeof * coef2);
    LTFAT_COMPLEX *f2 = ltfat_malloc(L * W * sizeof * f2);

    PREPROC

    /* coef2=comp_dgt(f,g,a,2*M,L); */
    LTFAT_NAME_COMPLEX(dgt_fb)(f2, g, L, gl, W, M, 2 * M, FREQINV, coef2);


    LTFAT_COMPLEX *pcoef  = cout;
    LTFAT_COMPLEX *pcoef2 = coef2;

    POSTPROC_COMPLEX

    LTFAT_SAFEFREEALL(coef2, f2);

}

LTFAT_EXTERN void
LTFAT_NAME_REAL(dwiltiii_fb)(const LTFAT_REAL *f, const LTFAT_REAL *g,
                             const ltfatInt L, const ltfatInt gl,
                             const ltfatInt W, const ltfatInt M,
                             LTFAT_REAL *cout)
{
    const ltfatInt N = L / M;
    const ltfatInt M2 = 2 * M;
    const ltfatInt M4 = 4 * M;

    LTFAT_COMPLEX *coef2 = ltfat_malloc(2 * M * N * W * sizeof * coef2);
    LTFAT_COMPLEX *f2 = ltfat_malloc(L * W * sizeof * f2);
    LTFAT_COMPLEX *g2 = ltfat_malloc(gl * sizeof * g2);

    //Real to complex
    for (ltfatInt ii = 0; ii < gl; ii++)
        g2[ii] = g[ii];

    PREPROC

    LTFAT_NAME_COMPLEX(dgt_fb)(f2, g2, L, gl, W, M, 2 * M, FREQINV, coef2);

    LTFAT_REAL* pcoef  = cout;
    LTFAT_COMPLEX* pcoef2 = coef2;

    POSTPROC_REAL

    LTFAT_SAFEFREEALL(coef2, f2, g2);
}

#undef CH
#undef POSTPROC_REAL
#undef POSTPROC_COMPLEX
#undef PREPROC