Lines Matching defs:dst
453 static int multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, AudioData *src, int src_size, int *consumed){
470 for (i = 0; i < dst->ch_count; i++) {
471 c->dsp.resample_one(dst->ch[i], src->ch[i], dst_size, index2, incr);
472 if (i+1 == dst->ch_count) {
486 int (*resample_func)(struct ResampleContext *c, void *dst,
495 for (i = 0; i < dst->ch_count; i++)
496 *consumed = resample_func(c, dst->ch[i], src->ch[i], dst_size, i+1 == dst->ch_count);
561 static int invert_initial_buffer(ResampleContext *c, AudioData *dst, const AudioData *src,
569 if ((res = swri_realloc_audio(dst, c->filter_length * 2 + 1)) < 0)
575 memcpy(dst->ch[ch] + ((c->filter_length + n) * c->felem_size),
590 memcpy(dst->ch[ch] + ((c->filter_length - n) * c->felem_size),
591 dst->ch[ch] + ((c->filter_length + n) * c->felem_size),