Lines Matching refs:dst_index
263 int dst_index;
281 for(dst_index = 0; dst_index < dst_size; dst_index++) {
282 c->resample_nearest(dst, dst_index, src, index2 >> 32);
286 dst_index = dst_size;
288 index += dst_index * dst_incr;
289 index += (frac + dst_index * (int64_t)dst_incr_frac) / c->src_incr;
290 frac = (frac + dst_index * (int64_t)dst_incr_frac) % c->src_incr;
292 for (dst_index = 0; dst_index < dst_size; dst_index++) {
299 c->resample_one(c, dst, dst_index, src, index, frac);
307 if (dst_index + 1 == compensation_distance) {
321 compensation_distance -= dst_index;
331 return dst_index;