Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/hybrid_decoder.c')
-rw-r--r--src/hybrid_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hybrid_decoder.c b/src/hybrid_decoder.c
index 2617faf4..6d0c16a3 100644
--- a/src/hybrid_decoder.c
+++ b/src/hybrid_decoder.c
@@ -71,7 +71,7 @@ int hybrid_decode(HybridDecoder *st, const unsigned char *data,
celt_decoder_ctl(st->celt_dec, CELT_SET_START_BAND(13));
/* Encode high band with CELT */
- celt_ret = celt_decode_with_ec(st->celt_dec, data, len, pcm, NULL, frame_size, &dec);
+ celt_ret = celt_decode_with_ec(st->celt_dec, data, len, pcm, frame_size, &dec);
return celt_ret;