Lines Matching refs:synth
99 static void postfilter(float *out_data, float* synth, float* iir_mem, in postfilter() argument
113 ff_celp_lp_synthesis_filterf(tmpbuf, filt_mem[1], synth, 30, in postfilter()
116 memcpy(synth - LP_FILTER_ORDER_16k, mem_preemph, in postfilter()
117 LP_FILTER_ORDER_16k * sizeof(*synth)); in postfilter()
119 ff_celp_lp_synthesis_filterf(synth, filt_mem[0], synth, 30, in postfilter()
123 synth + 30 - LP_FILTER_ORDER_16k, in postfilter()
124 LP_FILTER_ORDER_16k * sizeof(*synth)); in postfilter()
127 synth + 30, 2 * L_SUBFR_16k - 30, in postfilter()
132 LP_FILTER_ORDER_16k * sizeof(*synth)); in postfilter()
136 out_data[i] = tmpbuf[i] + s * (synth[i] - tmpbuf[i]); in postfilter()
180 float *synth = ctx->synth_buf + LP_FILTER_ORDER_16k; in ff_sipr_decode_frame_16k() local
203 memcpy(synth - LP_FILTER_ORDER_16k, ctx->synth, in ff_sipr_decode_frame_16k()
204 LP_FILTER_ORDER_16k * sizeof(*synth)); in ff_sipr_decode_frame_16k()
255 ff_celp_lp_synthesis_filterf(synth + i_subfr, Az[i], in ff_sipr_decode_frame_16k()
260 memcpy(ctx->synth, synth + frame_size - LP_FILTER_ORDER_16k, in ff_sipr_decode_frame_16k()
261 LP_FILTER_ORDER_16k * sizeof(*synth)); in ff_sipr_decode_frame_16k()
266 postfilter(out_data, synth, ctx->iir_mem, ctx->filt_mem, ctx->mem_preemph); in ff_sipr_decode_frame_16k()