Lines Matching defs:channels
63 int channels;
85 EXPORT SpeexDecorrState *speex_decorrelate_new(int rate, int channels, int frame_size)
90 st->channels = channels;
100 st->buff = speex_alloc(channels*2*frame_size*sizeof(float));
101 st->ringID = speex_alloc(channels*sizeof(int));
102 st->order = speex_alloc(channels*sizeof(int));
103 st->alpha = speex_alloc(channels*sizeof(float));
104 st->ring = speex_alloc(channels*ALLPASS_ORDER*sizeof(float));
112 for (ch=0;ch<channels;ch++)
152 for (ch=0;ch<st->channels;ch++)
175 buff[i+st->frame_size] = in[i*st->channels+ch];
268 out[i*st->channels+ch] = tmp;