• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:SUBFR_SIZE

183     for (i = pitch_lag_int; i < SUBFR_SIZE; i++)
239 float tmp1[SUBFR_SIZE+1], tmp2[LP_FILTER_ORDER+1];
249 ff_celp_lp_synthesis_filterf(freq, tmp2, tmp1, SUBFR_SIZE,
274 float buf[SUBFR_SIZE + LP_FILTER_ORDER];
288 ff_celp_lp_synthesis_filterf(pole_out, lpc_d, samples, SUBFR_SIZE,
291 memcpy(ctx->postfilter_mem, pole_out + SUBFR_SIZE - LP_FILTER_ORDER,
294 ff_tilt_compensation(&ctx->tilt_mem, 0.4, pole_out, SUBFR_SIZE);
299 memcpy(ctx->postfilter_mem5k0, pole_out + SUBFR_SIZE - LP_FILTER_ORDER,
302 ff_celp_lp_zero_synthesis_filterf(samples, lpc_n, pole_out, SUBFR_SIZE,
368 int frame_size = subframe_count * SUBFR_SIZE;
371 float ir_buf[SUBFR_SIZE + LP_FILTER_ORDER];
390 float fixed_vector[SUBFR_SIZE];
403 SUBFR_SIZE);
411 SUBFR_SIZE);
414 (0.01 + ff_dot_productf(fixed_vector, fixed_vector, SUBFR_SIZE))/
415 SUBFR_SIZE;
425 pitch_gain, gain_code, SUBFR_SIZE);
434 for (j = 0; j < SUBFR_SIZE; j++)
440 ff_celp_lp_synthesis_filterf(ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE,
441 pAz, excitation, SUBFR_SIZE,
445 ff_celp_lp_synthesis_filterf(synth + i*SUBFR_SIZE, pAz, fixed_vector,
446 SUBFR_SIZE, LP_FILTER_ORDER);
448 excitation += SUBFR_SIZE;
456 float energy = ff_dot_productf(ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE,
457 ctx->postfilter_syn5k0 + LP_FILTER_ORDER + i*SUBFR_SIZE,
458 SUBFR_SIZE);
459 ff_adaptive_gain_control(&synth[i * SUBFR_SIZE],
460 &synth[i * SUBFR_SIZE], energy,
461 SUBFR_SIZE, 0.9, &ctx->postfilter_agc);
530 int subframe_size = ctx->mode == MODE_16k ? L_SUBFR_16k : SUBFR_SIZE;