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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Alexander Traud
Opus
Commits
7028d62f
Commit
7028d62f
authored
16 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Do not encode the short-window bit when not applicable.
parent
bd7de0a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libcelt/celt.c
+44
-30
44 additions, 30 deletions
libcelt/celt.c
with
44 additions
and
30 deletions
libcelt/celt.c
+
44
−
30
View file @
7028d62f
...
...
@@ -402,37 +402,44 @@ int celt_encode(CELTEncoder * restrict st, celt_int16_t * restrict pcm, unsigned
}
CELT_COPY
(
st
->
in_mem
,
in
+
C
*
(
2
*
N
-
2
*
N4
-
st
->
overlap
),
C
*
st
->
overlap
);
if
(
transient_analysis
(
in
,
N
+
st
->
overlap
,
C
,
&
transient_time
,
&
transient_shift
)
)
if
(
st
->
mode
->
nbShortMdcts
>
1
)
{
if
(
transient_analysis
(
in
,
N
+
st
->
overlap
,
C
,
&
transient_time
,
&
transient_shift
))
{
#ifndef FIXED_POINT
float
gain_1
;
float
gain_1
;
#endif
ec_enc_bits
(
&
st
->
enc
,
1
,
1
);
ec_enc_bits
(
&
st
->
enc
,
transient_shift
,
2
);
if
(
transient_shift
)
ec_enc_uint
(
&
st
->
enc
,
transient_time
,
N
+
st
->
overlap
);
if
(
transient_shift
)
{
ec_enc_bits
(
&
st
->
enc
,
1
,
1
);
ec_enc_bits
(
&
st
->
enc
,
transient_shift
,
2
);
if
(
transient_shift
)
ec_enc_uint
(
&
st
->
enc
,
transient_time
,
N
+
st
->
overlap
);
if
(
transient_shift
)
{
#ifdef FIXED_POINT
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
0
;
i
<
16
;
i
++
)
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]
=
MULT16_32_Q15
(
EXTRACT16
(
SHR32
(
celt_rcp
(
Q15ONE
+
MULT16_16
(
transientWindow
[
i
],((
1
<<
transient_shift
)
-
1
))),
1
)),
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]);
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
transient_time
;
i
<
N
+
st
->
overlap
;
i
++
)
in
[
C
*
i
+
c
]
=
SHR32
(
in
[
C
*
i
+
c
],
transient_shift
);
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
0
;
i
<
16
;
i
++
)
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]
=
MULT16_32_Q15
(
EXTRACT16
(
SHR32
(
celt_rcp
(
Q15ONE
+
MULT16_16
(
transientWindow
[
i
],((
1
<<
transient_shift
)
-
1
))),
1
)),
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]);
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
transient_time
;
i
<
N
+
st
->
overlap
;
i
++
)
in
[
C
*
i
+
c
]
=
SHR32
(
in
[
C
*
i
+
c
],
transient_shift
);
#else
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
0
;
i
<
16
;
i
++
)
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]
/=
1
+
transientWindow
[
i
]
*
((
1
<<
transient_shift
)
-
1
);
gain_1
=
1
.
/
(
1
<<
transient_shift
);
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
transient_time
;
i
<
N
+
st
->
overlap
;
i
++
)
in
[
C
*
i
+
c
]
*=
gain_1
;
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
0
;
i
<
16
;
i
++
)
in
[
C
*
(
transient_time
+
i
-
16
)
+
c
]
/=
1
+
transientWindow
[
i
]
*
((
1
<<
transient_shift
)
-
1
);
gain_1
=
1
.
/
(
1
<<
transient_shift
);
for
(
c
=
0
;
c
<
C
;
c
++
)
for
(
i
=
transient_time
;
i
<
N
+
st
->
overlap
;
i
++
)
in
[
C
*
i
+
c
]
*=
gain_1
;
#endif
}
shortBlocks
=
1
;
}
else
{
ec_enc_bits
(
&
st
->
enc
,
0
,
1
);
transient_time
=
-
1
;
transient_shift
=
0
;
shortBlocks
=
0
;
}
shortBlocks
=
1
;
}
else
{
ec_enc_bits
(
&
st
->
enc
,
0
,
1
);
transient_time
=
-
1
;
transient_shift
=
0
;
shortBlocks
=
0
;
...
...
@@ -769,15 +776,22 @@ int celt_decode(CELTDecoder * restrict st, unsigned char *data, int len, celt_in
ec_byte_readinit
(
&
buf
,
data
,
len
);
ec_dec_init
(
&
dec
,
&
buf
);
shortBlocks
=
ec_dec_bits
(
&
dec
,
1
);
if
(
shortBlocks
)
if
(
st
->
mode
->
nbShortMdcts
>
1
)
{
transient_shift
=
ec_dec_bits
(
&
dec
,
2
);
if
(
transient_shift
)
transient_time
=
ec_dec_uint
(
&
dec
,
N
+
st
->
mode
->
overlap
);
else
transient_time
=
0
;
shortBlocks
=
ec_dec_bits
(
&
dec
,
1
);
if
(
shortBlocks
)
{
transient_shift
=
ec_dec_bits
(
&
dec
,
2
);
if
(
transient_shift
)
transient_time
=
ec_dec_uint
(
&
dec
,
N
+
st
->
mode
->
overlap
);
else
transient_time
=
0
;
}
else
{
transient_time
=
-
1
;
transient_shift
=
0
;
}
}
else
{
shortBlocks
=
0
;
transient_time
=
-
1
;
transient_shift
=
0
;
}
...
...
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