HomeSort by relevance Sort by last modified time
    Searched defs:speex_realloc (Results 1 - 2 of 2) sorted by null

  /external/speex/libspeex/
os_support.h 48 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_free
71 static inline void *speex_realloc (void *ptr, int size) function
77 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_alloc */
resample.c 67 static void *speex_realloc (void *ptr, int size) {return realloc(ptr, size);} function
598 st->sinc_table = (spx_word16_t *)speex_realloc(st->sinc_table,st->filt_len*st->den_rate*sizeof(spx_word16_t));
624 st->sinc_table = (spx_word16_t *)speex_realloc(st->sinc_table,(st->filt_len*st->oversample+8)*sizeof(spx_word16_t));
658 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
671 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
    [all...]

Completed in 312 milliseconds