Home | History | Annotate | Download | only in libspeex

Lines Matching refs:channels

59    int channels;
81 EXPORT SpeexDecorrState *speex_decorrelate_new(int rate, int channels, int frame_size)
86 st->channels = channels;
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));
108 for (ch=0;ch<channels;ch++)
148 for (ch=0;ch<st->channels;ch++)
171 buff[i+st->frame_size] = in[i*st->channels+ch];
264 out[i*st->channels+ch] = tmp;