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

gitlab.com/quite/celt.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>2010-01-17 03:12:06 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2010-01-17 03:12:06 +0300
commit619a9681bc03248a4d61efe1c7cb6530f71ab192 (patch)
tree45838b746321642d5ae3e42ae0b79ab857e84297 /libcelt/os_support.h
parentdf726557ad6cc7cdea40d5f6b4db89d2c651e157 (diff)
Misc changes for 0.7.1.
Diffstat (limited to 'libcelt/os_support.h')
-rw-r--r--libcelt/os_support.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libcelt/os_support.h b/libcelt/os_support.h
index f72c2ec..8a47df9 100644
--- a/libcelt/os_support.h
+++ b/libcelt/os_support.h
@@ -42,7 +42,7 @@
#include <stdio.h>
#include <stdlib.h>
-/** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, celt_realloc and celt_free
+/** CELT wrapper for calloc(). To do your own dynamic allocation, all you need to do is replace this function, celt_realloc and celt_free
NOTE: celt_alloc needs to CLEAR THE MEMORY */
#ifndef OVERRIDE_CELT_ALLOC
static inline void *celt_alloc (int size)
@@ -54,7 +54,7 @@ static inline void *celt_alloc (int size)
}
#endif
-/** Same as celt_alloc, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
+/** Same as celt_alloc(), except that the area is only needed inside a CELT call (might cause problem with wideband though) */
#ifndef OVERRIDE_CELT_ALLOC_SCRATCH
static inline void *celt_alloc_scratch (int size)
{
@@ -63,7 +63,7 @@ static inline void *celt_alloc_scratch (int size)
}
#endif
-/** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function, celt_alloc and celt_free */
+/** CELT wrapper for realloc(). To do your own dynamic allocation, all you need to do is replace this function, celt_alloc and celt_free */
#ifndef OVERRIDE_CELT_REALLOC
static inline void *celt_realloc (void *ptr, int size)
{
@@ -71,7 +71,7 @@ static inline void *celt_realloc (void *ptr, int size)
}
#endif
-/** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, celt_realloc and celt_alloc */
+/** CELT wrapper for free(). To do your own dynamic allocation, all you need to do is replace this function, celt_realloc and celt_alloc */
#ifndef OVERRIDE_CELT_FREE
static inline void celt_free (void *ptr)
{
@@ -79,7 +79,7 @@ static inline void celt_free (void *ptr)
}
#endif
-/** Same as celt_free, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
+/** Same as celt_free(), except that the area is only needed inside a CELT call (might cause problem with wideband though) */
#ifndef OVERRIDE_CELT_FREE_SCRATCH
static inline void celt_free_scratch (void *ptr)
{