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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Marcus Asteborg
Opus
Commits
e2a09db9
Commit
e2a09db9
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Implementing decoder-side support for redundant mode switching (bemasc's idea)
parent
60d59c87
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/opus_decoder.c
+17
-5
17 additions, 5 deletions
src/opus_decoder.c
src/opus_decoder.h
+1
-0
1 addition, 0 deletions
src/opus_decoder.h
src/opus_encoder.c
+13
-0
13 additions, 0 deletions
src/opus_encoder.c
with
31 additions
and
5 deletions
src/opus_decoder.c
+
17
−
5
View file @
e2a09db9
...
...
@@ -83,6 +83,8 @@ int opus_decode(OpusDecoder *st, const unsigned char *data,
int
audiosize
;
int
mode
;
int
transition
=
0
;
int
start_band
;
int
redundancy
;
/* Payloads of 1 (2 including ToC) or 0 trigger the PLC/DTX */
if
(
len
<=
2
)
...
...
@@ -130,7 +132,8 @@ int opus_decode(OpusDecoder *st, const unsigned char *data,
&&
!
(
mode
==
MODE_HYBRID
&&
st
->
prev_mode
==
MODE_SILK_ONLY
))
{
transition
=
1
;
opus_decode
(
st
,
NULL
,
0
,
pcm_transition
,
IMAX
(
480
,
audiosize
),
0
);
if
(
mode
==
MODE_CELT_ONLY
&&
!
st
->
prev_redundancy
)
opus_decode
(
st
,
NULL
,
0
,
pcm_transition
,
IMAX
(
480
,
audiosize
),
0
);
}
if
(
audiosize
>
frame_size
)
{
...
...
@@ -185,13 +188,21 @@ int opus_decode(OpusDecoder *st, const unsigned char *data,
pcm
[
i
]
=
0
;
}
start_band
=
0
;
if
(
mode
==
MODE_HYBRID
)
{
/*
This should be adjusted based on the SILK bandwidth
*/
celt_d
ec
o
de
r_ctl
(
st
->
celt_dec
,
CELT_SET_START_BAND
(
17
)
);
}
else
{
celt_decoder_ctl
(
st
->
celt_dec
,
CELT_SET_START_BAND
(
0
))
;
/*
Check if we have a redundant 0-8 kHz band
*/
redundancy
=
ec
_
de
c_bit_logp
(
&
dec
,
12
);
if
(
!
redundancy
)
start_band
=
17
;
}
celt_decoder_ctl
(
st
->
celt_dec
,
CELT_SET_START_BAND
(
start_band
));
if
(
redundancy
)
transition
=
0
;
if
(
transition
&&
mode
!=
MODE_CELT_ONLY
)
opus_decode
(
st
,
NULL
,
0
,
pcm_transition
,
IMAX
(
480
,
audiosize
),
0
);
if
(
mode
!=
MODE_SILK_ONLY
)
{
...
...
@@ -242,6 +253,7 @@ int opus_decode(OpusDecoder *st, const unsigned char *data,
#endif
st
->
prev_mode
=
mode
;
st
->
prev_redundancy
=
redundancy
;
return
celt_ret
<
0
?
celt_ret
:
audiosize
;
}
...
...
This diff is collapsed.
Click to expand it.
src/opus_decoder.h
+
1
−
0
View file @
e2a09db9
...
...
@@ -41,6 +41,7 @@ struct OpusDecoder {
/* Sampling rate (at the API level) */
int
Fs
;
int
prev_mode
;
int
prev_redundancy
;
#ifdef OPUS_TEST_RANGE_CODER_STATE
int
rangeFinal
;
...
...
This diff is collapsed.
Click to expand it.
src/opus_encoder.c
+
13
−
0
View file @
e2a09db9
...
...
@@ -95,6 +95,8 @@ int opus_encode(OpusEncoder *st, const short *pcm, int frame_size,
int
silk_internal_bandwidth
;
int
bytes_target
;
int
prefill
=
0
;
int
start_band
;
int
redundancy
=
0
;
bytes_target
=
st
->
bitrate_bps
*
frame_size
/
(
st
->
Fs
*
8
)
-
1
;
...
...
@@ -213,6 +215,17 @@ int opus_encode(OpusEncoder *st, const short *pcm, int frame_size,
}
else
{
celt_encoder_ctl
(
st
->
celt_enc
,
CELT_SET_PREDICTION
(
2
));
}
start_band
=
0
;
if
(
st
->
mode
==
MODE_HYBRID
)
{
/* Check if we have a redundant 0-8 kHz band */
ec_enc_bit_logp
(
&
enc
,
redundancy
,
12
);
if
(
!
redundancy
)
start_band
=
17
;
}
celt_encoder_ctl
(
st
->
celt_enc
,
CELT_SET_START_BAND
(
start_band
));
if
(
st
->
mode
==
MODE_HYBRID
)
{
int
len
;
...
...
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