Skip to content
Snippets Groups Projects
Commit 01b15eb2 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Fixes resampling in CELT-only mode

parent 341a8849
No related branches found
No related tags found
No related merge requests found
celt @ 713d7a4c
Subproject commit 00a98f5debf8ccd3ec64732f0c2592bb5cf42a2c
Subproject commit 713d7a4ce99abd7db50ee3b0af0ba8316a353ca3
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment