Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tim-Philipp Müller
Opus
Commits
01b15eb2
Commit
01b15eb2
authored
Jan 31, 2011
by
Jean-Marc Valin
Browse files
Fixes resampling in CELT-only mode
parent
341a8849
Changes
2
Hide whitespace changes
Inline
Side-by-side
celt
@
713d7a4c
Subproject commit
00a98f5debf8ccd3ec64732f0c2592bb5cf42a2c
Subproject commit
713d7a4ce99abd7db50ee3b0af0ba8316a353ca3
src/opus_decoder.c
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
;
...
...
Write
Preview
Supports
Markdown
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