Home | History | Annotate | Download | only in libspeex

Lines Matching refs:speex_alloc

84    SpeexDecorrState *st = speex_alloc(sizeof(SpeexDecorrState));
91 st->wola_mem = speex_alloc(frame_size*sizeof(float));
92 st->curve = speex_alloc(frame_size*sizeof(float));
94 st->y = speex_alloc(frame_size*sizeof(float));
96 st->buff = speex_alloc(channels*2*frame_size*sizeof(float));
97 st->ringID = speex_alloc(channels*sizeof(int));
98 st->order = speex_alloc(channels*sizeof(int));
99 st->alpha = speex_alloc(channels*sizeof(float));
100 st->ring = speex_alloc(channels*ALLPASS_ORDER*sizeof(float));
103 st->vorbis_win = speex_alloc((2*frame_size+20)*sizeof(float));