Home | History | Annotate | Download | only in libspeex

Lines Matching full:frame

226       float frame[N];
229 frame[i] = buff[i];
242 frame[2*i-1] = gain*x1;
243 frame[2*i] = gain*x2;
245 frame[0] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[0]);
246 frame[2*st->frame_size-1] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[st->frame_size-1]);
247 spx_drft_backward(&st->lookup,frame);
249 frame[i] *= st->vorbis_win[i];
255 float tmp = st->y[i] + frame[i] + st->wola_mem[i];
256 st->wola_mem[i] = frame[i+st->frame_size];