OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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_
649
st->
mem_alloc_size
= st->filt_len-1 + st->buffer_size;
650
st->mem = (spx_word16_t*)speex_alloc(st->nb_channels*st->
mem_alloc_size
* sizeof(spx_word16_t));
651
for (i=0;i<st->nb_channels*st->
mem_alloc_size
;i++)
657
st->
mem_alloc_size
= st->filt_len-1 + st->buffer_size;
658
st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->
mem_alloc_size
* sizeof(spx_word16_t));
659
for (i=0;i<st->nb_channels*st->
mem_alloc_size
;i++)
667
int old_alloc_size = st->
mem_alloc_size
;
668
if ((st->filt_len-1 + st->buffer_size) > st->
mem_alloc_size
)
670
st->
mem_alloc_size
= st->filt_len-1 + st->buffer_size
[
all
...]
Completed in 537 milliseconds