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
01b15eb2
Commit
01b15eb2
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Fixes resampling in CELT-only mode
parent
341a8849
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
celt
+1
-1
1 addition, 1 deletion
celt
src/opus_decoder.c
+1
-1
1 addition, 1 deletion
src/opus_decoder.c
with
2 additions
and
2 deletions
celt
@
713d7a4c
Subproject commit
00a98f5debf8ccd3ec64732f0c2592bb5cf42a2c
Subproject commit
713d7a4ce99abd7db50ee3b0af0ba8316a353ca3
This diff is collapsed.
Click to expand it.
src/opus_decoder.c
+
1
−
1
View file @
01b15eb2
...
...
@@ -69,7 +69,7 @@ OpusDecoder *opus_decoder_create(int Fs, int channels)
}
/* Initialize CELT decoder */
st
->
celt_dec
=
celt_decoder_init
(
st
->
celt_dec
,
48000
,
channels
,
NULL
);
st
->
celt_dec
=
celt_decoder_init
(
st
->
celt_dec
,
Fs
,
channels
,
NULL
);
return
st
;
...
...
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