Home | History | Annotate | Download | only in libspeex

Lines Matching refs:ochunk

867         spx_uint32_t ochunk = olen;
876 speex_resampler_process_native(st, channel_index, &ichunk, out, &ochunk);
878 olen -= ochunk;
879 out += ochunk * st->out_stride;
916 spx_uint32_t ochunk = (olen > ylen) ? ylen : olen;
920 omagic = speex_resampler_magic(st, channel_index, &y, ochunk);
921 ochunk -= omagic;
937 speex_resampler_process_native(st, channel_index, &ichunk, y, &ochunk);
940 ochunk = 0;
943 for (j=0;j<ochunk+omagic;++j)
951 olen -= ochunk;
952 out += (ochunk+omagic) * ostride_save;