HomeSort by relevance Sort by last modified time
    Searched full:mem_alloc_size (Results 1 - 1 of 1) sorted by null

  /external/speex/libspeex/
resample.c 124 spx_uint32_t mem_alloc_size; member in struct:SpeexResamplerState_
650 st->mem_alloc_size = st->filt_len-1 + st->buffer_size;
651 st->mem = (spx_word16_t*)speex_alloc(st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
652 for (i=0;i<st->nb_channels*st->mem_alloc_size;i++)
658 st->mem_alloc_size = st->filt_len-1 + st->buffer_size;
659 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
660 for (i=0;i<st->nb_channels*st->mem_alloc_size;i++)
668 int old_alloc_size = st->mem_alloc_size;
669 if ((st->filt_len-1 + st->buffer_size) > st->mem_alloc_size)
671 st->mem_alloc_size = st->filt_len-1 + st->buffer_size
    [all...]

Completed in 612 milliseconds