forked from xiph/speex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_kiss_fft_guts_tm.h
188 lines (147 loc) · 5.63 KB
/
_kiss_fft_guts_tm.h
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
176
177
178
179
180
181
182
183
184
185
186
187
/* Copyright (C) 2007 Hong Zhiqian */
/**
@file _kiss_fft_guts_tm.h
@author Hong Zhiqian
@brief Various compatibility routines for Speex (TriMedia version)
*/
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- Neither the name of the Xiph.org Foundation nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _KISS_FFT_GUTS_TM_
#define _KISS_FFT_GUTS_TM_
#ifdef TM_ASM
#include <ops/custom_defs.h>
#ifdef FIXED_POINT
#undef sround
#define sround(x) sex16(((x) + (1<<(FRACBITS-1)) ) >> FRACBITS)
#undef MIN
#undef MAX
#define MIN(a,b) imin(a,b)
#define MAX(a,b) imax(a,b)
#define TM_MUL(res,a,b) \
{ register int a0, a1, b0, b1; \
\
a0 = sex16((a)); \
a1 = asri(16,(a)); \
b0 = sex16((b)); \
b1 = asri(16,(b)); \
(res)= pack16lsb( \
sround(ifir16((a),funshift2((b),(b)))), \
sround(a0*b0-a1*b1)); \
} \
#define TM_ADD(res,a,b) \
{ (res)=dspidualadd((a),(b)); \
} \
#define TM_SUB(res,a,b) \
{ (res)=dspidualsub((a),(b)); \
} \
#define TM_SHR(res,a,shift) \
{ (res)=dualasr((a),(shift)); \
} \
#define TM_DIV(res,c,frac) \
{ register int c1, c0; \
\
c1 = asri(16,(c)); \
c0 = sex16((c)); \
(res) = pack16lsb(sround(c1 * (32767/(frac))), sround(c0 * (32767/(frac))));\
} \
#define TM_NEGMSB(res, a) \
{ (res) = pack16lsb((ineg(asri(16,(a)))), (a)); \
} \
#else
#undef MIN
#undef MAX
#define MIN(a,b) fmin(a,b)
#define MAX(a,b) fmax(a,b)
#endif
#endif
#undef CHECKBUF
#define CHECKBUF(buf,nbuf,n) \
{ \
if ( nbuf < (size_t)(n) ) { \
speex_free(buf); \
buf = (kiss_fft_cpx*)KISS_FFT_MALLOC(sizeof(kiss_fft_cpx)*(n)); \
nbuf = (size_t)(n); \
} \
} \
#undef C_ADD
#define C_ADD( res, a,b) \
{ \
CHECK_OVERFLOW_OP((a).r,+,(b).r) \
CHECK_OVERFLOW_OP((a).i,+,(b).i) \
(res).r=(a).r+(b).r; (res).i=(a).i+(b).i; \
} \
#undef C_SUB
#define C_SUB( res, a,b) \
{ \
CHECK_OVERFLOW_OP((a).r,-,(b).r) \
CHECK_OVERFLOW_OP((a).i,-,(b).i) \
(res).r=(a).r-(b).r; (res).i=(a).i-(b).i; \
} \
#undef C_ADDTO
#define C_ADDTO( res , a) \
{ \
CHECK_OVERFLOW_OP((res).r,+,(a).r) \
CHECK_OVERFLOW_OP((res).i,+,(a).i) \
(res).r += (a).r; (res).i += (a).i; \
} \
#undef C_SUBFROM
#define C_SUBFROM( res, a) \
{ \
CHECK_OVERFLOW_OP((res).r,-,(a).r) \
CHECK_OVERFLOW_OP((res).i,-,(a).i) \
(res).r -= (a).r; (res).i -= (a).i; \
} \
#undef kf_cexp
#define kf_cexp(x,phase) \
{ (x)->r = KISS_FFT_COS(phase); \
(x)->i = KISS_FFT_SIN(phase); } \
#undef kf_cexp2
#define kf_cexp2(x,phase) \
{ (x)->r = spx_cos_norm((phase)); \
(x)->i = spx_cos_norm((phase)-32768); } \
#ifdef FIXED_POINT
#undef C_MUL
#define C_MUL(m,a,b) \
{ (m).r = sround( smul((a).r,(b).r) - smul((a).i,(b).i) ); \
(m).i = sround( smul((a).r,(b).i) + smul((a).i,(b).r) ); } \
#undef C_FIXDIV
#define C_FIXDIV(c,div) \
{ DIVSCALAR( (c).r , div); \
DIVSCALAR( (c).i , div); } \
#undef C_MULBYSCALAR
#define C_MULBYSCALAR( c, s ) \
{ (c).r = sround( smul( (c).r , s ) ) ; \
(c).i = sround( smul( (c).i , s ) ) ; } \
#else
#undef C_MUL
#define C_MUL(m,a,b) \
{ (m).r = (a).r*(b).r - (a).i*(b).i; \
(m).i = (a).r*(b).i + (a).i*(b).r; } \
#undef C_MULBYSCALAR
#define C_MULBYSCALAR( c, s ) \
{ (c).r *= (s); \
(c).i *= (s); } \
#endif
#endif