Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Mark Harris
Opus
Commits
e1f84620
Commit
e1f84620
authored
Dec 29, 2013
by
Jean-Marc Valin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup -- nothing to see here
parent
05291fd6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
10 deletions
+2
-10
celt/celt_decoder.c
celt/celt_decoder.c
+1
-1
celt/celt_encoder.c
celt/celt_encoder.c
+1
-1
celt/modes.h
celt/modes.h
+0
-8
No files found.
celt/celt_decoder.c
View file @
e1f84620
...
...
@@ -264,7 +264,7 @@ void compute_inv_mdcts(const CELTMode *mode, int shortBlocks, celt_sig *X,
int
B
;
int
N
;
int
shift
;
const
int
overlap
=
OVERLAP
(
mode
)
;
const
int
overlap
=
mode
->
overlap
;
if
(
shortBlocks
)
{
...
...
celt/celt_encoder.c
View file @
e1f84620
...
...
@@ -416,7 +416,7 @@ int patch_transient_decision(opus_val16 *newE, opus_val16 *oldE, int nbEBands,
static
void
compute_mdcts
(
const
CELTMode
*
mode
,
int
shortBlocks
,
celt_sig
*
OPUS_RESTRICT
in
,
celt_sig
*
OPUS_RESTRICT
out
,
int
C
,
int
CC
,
int
LM
,
int
upsample
)
{
const
int
overlap
=
OVERLAP
(
mode
)
;
const
int
overlap
=
mode
->
overlap
;
int
N
;
int
B
;
int
shift
;
...
...
celt/modes.h
View file @
e1f84620
...
...
@@ -39,14 +39,6 @@
#define MAX_PERIOD 1024
#ifndef OVERLAP
#define OVERLAP(mode) ((mode)->overlap)
#endif
#ifndef FRAMESIZE
#define FRAMESIZE(mode) ((mode)->mdctSize)
#endif
typedef
struct
{
int
size
;
const
opus_int16
*
index
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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