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
8ea67049
Commit
8ea67049
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Disable newly introduced CELT signalling
parent
5012e4f3
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
celt
+1
-1
1 addition, 1 deletion
celt
src/opus_decoder.c
+2
-0
2 additions, 0 deletions
src/opus_decoder.c
src/opus_encoder.c
+2
-0
2 additions, 0 deletions
src/opus_encoder.c
with
5 additions
and
1 deletion
celt
@
dd2973dd
Subproject commit
3e7f22d45b285186e28b3bde54db0ce9126ca073
Subproject commit
dd2973dd6c440c3e48d18e9b010bbb2e916f5286
This diff is collapsed.
Click to expand it.
src/opus_decoder.c
+
2
−
0
View file @
8ea67049
...
...
@@ -32,6 +32,7 @@
#include
<stdlib.h>
#include
<stdio.h>
#include
<stdarg.h>
#include
"celt.h"
#include
"opus_decoder.h"
#include
"entdec.h"
#include
"modes.h"
...
...
@@ -66,6 +67,7 @@ OpusDecoder *opus_decoder_create(int Fs, int channels)
/* Initialize CELT decoder */
st
->
celt_dec
=
celt_decoder_init
(
st
->
celt_dec
,
Fs
,
channels
,
NULL
);
celt_decoder_ctl
(
st
->
celt_dec
,
CELT_SET_SIGNALLING
(
0
));
st
->
prev_mode
=
0
;
return
st
;
...
...
This diff is collapsed.
Click to expand it.
src/opus_encoder.c
+
2
−
0
View file @
8ea67049
...
...
@@ -32,6 +32,7 @@
#include
<stdlib.h>
#include
<stdio.h>
#include
<stdarg.h>
#include
"celt.h"
#include
"opus_encoder.h"
#include
"entenc.h"
#include
"modes.h"
...
...
@@ -76,6 +77,7 @@ OpusEncoder *opus_encoder_create(int Fs, int channels)
/* Create CELT encoder */
/* Initialize CELT encoder */
st
->
celt_enc
=
celt_encoder_init
(
st
->
celt_enc
,
Fs
,
channels
,
&
err
);
celt_encoder_ctl
(
st
->
celt_enc
,
CELT_SET_SIGNALLING
(
0
));
st
->
mode
=
MODE_HYBRID
;
st
->
bandwidth
=
BANDWIDTH_FULLBAND
;
...
...
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