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

  /external/speex/libspeex/
os_support.h 49 NOTE: speex_alloc needs to CLEAR THE MEMORY */
51 static inline void *speex_alloc (int size) function
60 /** Same as speex_alloc, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
69 /** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function, speex_alloc and speex_free */
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 66 static void *speex_alloc (int size) {return calloc(size,1);} function
595 st->sinc_table = (spx_word16_t *)speex_alloc(st->filt_len*st->den_rate*sizeof(spx_word16_t));
621 st->sinc_table = (spx_word16_t *)speex_alloc((st->filt_len*st->oversample+8)*sizeof(spx_word16_t));
650 st->mem = (spx_word16_t*)speex_alloc(st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
742 st = (SpeexResamplerState *)speex_alloc(sizeof(SpeexResamplerState));
768 st->last_sample = (spx_int32_t*)speex_alloc(nb_channels*sizeof(int));
769 st->magic_samples = (spx_uint32_t*)speex_alloc(nb_channels*sizeof(int));
770 st->samp_frac_num = (spx_uint32_t*)speex_alloc(nb_channels*sizeof(int));
    [all...]

Completed in 184 milliseconds