• 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:excitation

51 #define MAX_SIGNAL_HISTORY   416 ///< maximum excitation signal history
279 ///< zero filter output (i.e. excitation)
752 * - A zero-synthesis filter (generate excitation from synth signal)
753 * - Kalman smoothing on excitation, based on pitch
779 /* generate excitation from input signal */
1239 float *excitation)
1258 /* Apply gain to hardcoded codebook and use that as excitation signal */
1260 excitation[n] = wmavoice_std_codebook[r_idx + n] * gain;
1271 float *excitation)
1353 ff_acelp_interpolatef(&excitation[n], &excitation[n - pitch],
1361 ff_acelp_interpolatef(excitation, &excitation[-block_pitch],
1365 av_memcpy_backptr((uint8_t *) excitation, sizeof(float) * block_pitch,
1369 /* Interpolate ACB/FCB and use as excitation signal */
1370 ff_weighted_vector_sumf(excitation, excitation, pulses,
1386 * @param excitation target memory for the ACB+FCB interpolated signal
1395 float *excitation, float *synth)
1403 synth_block_hardcoded(s, gb, block_idx, size, frame_desc, excitation);
1406 frame_desc, excitation);
1415 ff_celp_lp_synthesis_filterf(synth, lpcs, excitation, size, s->lsps);
1429 * @param excitation target buffer for excitation signal
1436 float *excitation, float *synth)
1552 &excitation[n * block_nsamples],
1743 float excitation[MAX_SIGNAL_HISTORY + MAX_SFRAMESIZE + 12];
1749 memcpy(excitation, s->excitation_history,
1750 s->history_nsamples * sizeof(*excitation));
1829 &excitation[s->history_nsamples + n * MAX_FRAMESIZE],
1851 memcpy(s->excitation_history, &excitation[MAX_SFRAMESIZE],
1852 s->history_nsamples * sizeof(*excitation));