Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opus
Commits
af8402e0
Commit
af8402e0
authored
17 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Fixed stuff that got broken during the forward-backward split of the FFT
parent
df3cb9be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libcelt/_kiss_fft_guts.h
+40
-2
40 additions, 2 deletions
libcelt/_kiss_fft_guts.h
libcelt/kiss_fft.h
+1
-1
1 addition, 1 deletion
libcelt/kiss_fft.h
tests/dft-test.c
+18
-2
18 additions, 2 deletions
tests/dft-test.c
with
59 additions
and
5 deletions
libcelt/_kiss_fft_guts.h
+
40
−
2
View file @
af8402e0
...
...
@@ -67,8 +67,8 @@ struct kiss_fft_state{
do{ (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) ); }while(0)
# define C_MULC(m,a,b) \
do{ (m).r = sround( smul((a).r,(b).r) + smul((a).i,(b).i) ); \
(m).i = smul((a).i,(b).r) -
sround(
smul((a).r,(b).i) ); }while(0)
do{ (m).r = sround( smul((a).r,(b).r) + smul((a).i,(b).i) ); \
(m).i =
sround(
smul((a).i,(b).r) - smul((a).r,(b).i) ); }while(0)
# define C_MUL4(m,a,b) \
do{ (m).r = PSHR32( smul((a).r,(b).r) - smul((a).i,(b).i),17 ); \
...
...
@@ -85,6 +85,44 @@ struct kiss_fft_state{
do{ (c).r = sround( smul( (c).r , s ) ) ;\
(c).i = sround( smul( (c).i , s ) ) ; }while(0)
#define L1 32767
#define L2 -7651
#define L3 8277
#define L4 -626
static
inline
celt_word16_t
_celt_cos_pi_2
(
celt_word16_t
x
)
{
celt_word16_t
x2
;
x2
=
MULT16_16_P15
(
x
,
x
);
return
ADD16
(
1
,
MIN16
(
32766
,
ADD32
(
SUB16
(
L1
,
x2
),
MULT16_16_P15
(
x2
,
ADD32
(
L2
,
MULT16_16_P15
(
x2
,
ADD32
(
L3
,
MULT16_16_P15
(
L4
,
x2
))))))));
}
static
inline
celt_word16_t
celt_cos_norm
(
celt_word32_t
x
)
{
x
=
x
&
0x0001ffff
;
if
(
x
>
SHL32
(
EXTEND32
(
1
),
16
))
x
=
SUB32
(
SHL32
(
EXTEND32
(
1
),
17
),
x
);
if
(
x
&
0x00007fff
)
{
if
(
x
<
SHL32
(
EXTEND32
(
1
),
15
))
{
return
_celt_cos_pi_2
(
EXTRACT16
(
x
));
}
else
{
return
NEG32
(
_celt_cos_pi_2
(
EXTRACT16
(
65536
-
x
)));
}
}
else
{
if
(
x
&
0x0000ffff
)
return
0
;
else
if
(
x
&
0x0001ffff
)
return
-
32767
;
else
return
32767
;
}
}
#else
/* not FIXED_POINT*/
# define S_MUL(a,b) ( (a)*(b) )
...
...
This diff is collapsed.
Click to expand it.
libcelt/kiss_fft.h
+
1
−
1
View file @
af8402e0
...
...
@@ -33,7 +33,7 @@ extern "C" {
#ifdef FIXED_POINT
#include
"arch.h"
# define kiss_fft_scalar
spx
_int16_t
# define kiss_fft_scalar
celt
_int16_t
#else
# ifndef kiss_fft_scalar
/* default is float */
...
...
This diff is collapsed.
Click to expand it.
tests/dft-test.c
+
18
−
2
View file @
af8402e0
...
...
@@ -25,13 +25,17 @@ void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
im
=
-
im
;
#ifdef FIXED_POINT
re
/=
nfft
;
im
/=
nfft
;
if
(
!
isinverse
)
{
re
/=
nfft
;
im
/=
nfft
;
}
#endif
ansr
+=
in
[
k
].
r
*
re
-
in
[
k
].
i
*
im
;
ansi
+=
in
[
k
].
r
*
im
+
in
[
k
].
i
*
re
;
}
/*printf ("%d %d ", (int)ansr, (int)ansi);*/
difr
=
ansr
-
out
[
bin
].
r
;
difi
=
ansi
-
out
[
bin
].
i
;
errpow
+=
difr
*
difr
+
difi
*
difi
;
...
...
@@ -54,11 +58,23 @@ void test1d(int nfft,int isinverse)
in
[
k
].
i
=
(
rand
()
%
65536
)
-
32768
;
}
if
(
isinverse
)
{
for
(
k
=
0
;
k
<
nfft
;
++
k
)
{
in
[
k
].
r
/=
nfft
;
in
[
k
].
i
/=
nfft
;
}
}
/*for (k=0;k<nfft;++k) printf("%d %d ", in[k].r, in[k].i);printf("\n");*/
if
(
isinverse
)
kiss_ifft
(
cfg
,
in
,
out
);
else
kiss_fft
(
cfg
,
in
,
out
);
/*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/
check
(
in
,
out
,
nfft
,
isinverse
);
free
(
in
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment