Lines Matching refs:dst
31 static void apcm_dequant_add(GetBitContext *gb, int16_t *dst, const int *frame_bits)
38 dst[3 * i] += tab[ff_gsm_requant_tab[frame_bits[i]][val]];
47 static void long_term_synth(int16_t *dst, int lag, int gain_idx)
50 const int16_t *src = dst - lag;
53 dst[i] = gsm_mult(gain, src[i]);
83 static void short_term_synth(GSMContext *ctx, int16_t *dst, const int16_t *src)
92 dst[i] = filter_value(src[i], rrp, ctx->v);
97 dst[i] = filter_value(src[i], rrp, ctx->v);
102 dst[i] = filter_value(src[i], rrp, ctx->v);
107 dst[i] = filter_value(src[i], rrp, ctx->v);