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

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-12-03 05:07:11 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-12-03 05:07:11 +0300
commit1ccfd3cc03edd1760106f10387dc7cf8c49e308f (patch)
tree2e316d3349d9b798d51b0f51eb15d496c485c7df
parent6fd0270621a652484d06fa9d2a1a06721cd13400 (diff)
Oops, forgot to free the pitch bufer
-rw-r--r--libcelt/celt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/celt.c b/libcelt/celt.c
index d8a12a3..109c892 100644
--- a/libcelt/celt.c
+++ b/libcelt/celt.c
@@ -231,7 +231,7 @@ void celt_encoder_destroy(CELTEncoder *st)
celt_free(st->in_mem);
celt_free(st->out_mem);
-
+ celt_free(st->pitch_buf);
celt_free(st->oldBandE);
celt_free(st->preemph_memE);