Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mark Harris
Opus
Commits
32d8c10d
Commit
32d8c10d
authored
Mar 21, 2008
by
Jean-Marc Valin
Browse files
Removed potentially unused var in MDCT init
parent
ac5dc40a
Changes
1
Hide whitespace changes
Inline
Side-by-side
libcelt/mdct.c
View file @
32d8c10d
...
...
@@ -60,11 +60,10 @@
void
mdct_init
(
mdct_lookup
*
l
,
int
N
)
{
int
i
;
int
N2
,
N4
;
int
N2
;
l
->
n
=
N
;
N2
=
N
/
2
;
N4
=
N
/
4
;
l
->
kfft
=
cpx32_fft_alloc
(
N4
);
l
->
kfft
=
cpx32_fft_alloc
(
N
/
4
);
l
->
trig
=
(
kiss_twiddle_scalar
*
)
celt_alloc
(
N2
*
sizeof
(
kiss_twiddle_scalar
));
/* We have enough points that sine isn't necessary */
#if defined(FIXED_POINT)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment