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 'dnn/lpcnet_enc.c')
-rw-r--r--dnn/lpcnet_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dnn/lpcnet_enc.c b/dnn/lpcnet_enc.c
index e720c958..1cdbf76a 100644
--- a/dnn/lpcnet_enc.c
+++ b/dnn/lpcnet_enc.c
@@ -62,13 +62,13 @@ int lpcnet_encoder_load_model(LPCNetEncState *st, const unsigned char *data, int
LPCNetEncState *lpcnet_encoder_create(void) {
LPCNetEncState *st;
- st = malloc(lpcnet_encoder_get_size());
+ st = opus_alloc(lpcnet_encoder_get_size());
lpcnet_encoder_init(st);
return st;
}
void lpcnet_encoder_destroy(LPCNetEncState *st) {
- free(st);
+ opus_free(st);
}
static void frame_analysis(LPCNetEncState *st, kiss_fft_cpx *X, float *Ex, const float *in) {