Lines Matching refs:subframe
161 …wnmix_func downmix, const void *_x, opus_val32 *y, opus_val32 S[3], int subframe, int offset, int … in downmix_and_resample() argument
169 if (subframe==0) return 0; in downmix_and_resample()
172 subframe *= 2; in downmix_and_resample()
175 subframe = subframe*2/3; in downmix_and_resample()
178 ALLOC(tmp, subframe, opus_val32); in downmix_and_resample()
180 downmix(_x, tmp, subframe, offset, c1, c2, C); in downmix_and_resample()
190 for (j=0;j<subframe;j++) in downmix_and_resample()
194 ret = silk_resampler_down2_hp(S, y, tmp, subframe); in downmix_and_resample()
196 OPUS_COPY(y, tmp, subframe); in downmix_and_resample()
199 ALLOC(tmp3x, 3*subframe, opus_val32); in downmix_and_resample()
203 for (j=0;j<subframe;j++) in downmix_and_resample()
209 silk_resampler_down2_hp(S, y, tmp3x, 3*subframe); in downmix_and_resample()