• Home
  • Raw
  • Download

Lines Matching refs:SUBFR_SIZE

184     for (i = pitch_lag_int; i < SUBFR_SIZE; i++)  in pitch_sharpening()
240 float tmp1[SUBFR_SIZE+1], tmp2[LP_FILTER_ORDER+1]; in eval_ir()
250 ff_celp_lp_synthesis_filterf(freq, tmp2, tmp1, SUBFR_SIZE, in eval_ir()
275 float buf[SUBFR_SIZE + LP_FILTER_ORDER]; in postfilter_5k0()
289 ff_celp_lp_synthesis_filterf(pole_out, lpc_d, samples, SUBFR_SIZE, in postfilter_5k0()
292 memcpy(ctx->postfilter_mem, pole_out + SUBFR_SIZE - LP_FILTER_ORDER, in postfilter_5k0()
295 ff_tilt_compensation(&ctx->tilt_mem, 0.4, pole_out, SUBFR_SIZE); in postfilter_5k0()
300 memcpy(ctx->postfilter_mem5k0, pole_out + SUBFR_SIZE - LP_FILTER_ORDER, in postfilter_5k0()
303 ff_celp_lp_zero_synthesis_filterf(samples, lpc_n, pole_out, SUBFR_SIZE, in postfilter_5k0()
369 int frame_size = subframe_count * SUBFR_SIZE; in decode_frame()
372 float ir_buf[SUBFR_SIZE + LP_FILTER_ORDER]; in decode_frame()
391 float fixed_vector[SUBFR_SIZE]; in decode_frame()
404 SUBFR_SIZE); in decode_frame()
412 SUBFR_SIZE); in decode_frame()
416 SUBFR_SIZE)) / in decode_frame()
417 SUBFR_SIZE; in decode_frame()
427 pitch_gain, gain_code, SUBFR_SIZE); in decode_frame()
436 for (j = 0; j < SUBFR_SIZE; j++) in decode_frame()
442 ff_celp_lp_synthesis_filterf(ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE, in decode_frame()
443 pAz, excitation, SUBFR_SIZE, in decode_frame()
447 ff_celp_lp_synthesis_filterf(synth + i*SUBFR_SIZE, pAz, fixed_vector, in decode_frame()
448 SUBFR_SIZE, LP_FILTER_ORDER); in decode_frame()
450 excitation += SUBFR_SIZE; in decode_frame()
458 …at energy = avpriv_scalarproduct_float_c(ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i * SUBFR_SIZE, in decode_frame()
459 … ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i * SUBFR_SIZE, in decode_frame()
460 SUBFR_SIZE); in decode_frame()
461 ff_adaptive_gain_control(&synth[i * SUBFR_SIZE], in decode_frame()
462 &synth[i * SUBFR_SIZE], energy, in decode_frame()
463 SUBFR_SIZE, 0.9, &ctx->postfilter_agc); in decode_frame()
532 int subframe_size = ctx->mode == MODE_16k ? L_SUBFR_16k : SUBFR_SIZE; in sipr_decode_frame()