Lines Matching refs:FLAC__real

198 	const FLAC__real lp_coeff[],
317FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point ver…
318FLAC__real *real_signal_mid_side[2]; /* (@@@ currently unused) the floating-point ver…
319FLAC__real *window[FLAC__MAX_APODIZATION_FUNCTIONS]; /* the pre-computed floating-point window for…
320 FLAC__real *windowed_signal; /* the integer_signal[] * current window[] */
359 …d (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, F…
390 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) */
391 FLAC__real *real_signal_mid_side_unaligned[2]; /* (@@@ currently unused) */
392 FLAC__real *window_unaligned[FLAC__MAX_APODIZATION_FUNCTIONS];
393 FLAC__real *windowed_signal_unaligned;
404 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
1696 FLAC__real stddev = (FLAC__real)strtod(specification+6, 0); in FLAC__stream_encoder_set_apodization()
1715 FLAC__real p = (FLAC__real)strtod(specification+6, 0); in FLAC__stream_encoder_set_apodization()
1724 FLAC__real overlap = si_1?flac_min((FLAC__real)strtod(si_1+1, 0),0.99f):0.1f; in FLAC__stream_encoder_set_apodization()
1725 FLAC__real overlap_units = 1.0f/(1.0f - overlap) - 1.0f; in FLAC__stream_encoder_set_apodization()
1727 FLAC__real tukey_p = si_2?(FLAC__real)strtod(si_2+1, 0):0.2f; in FLAC__stream_encoder_set_apodization()
1745 FLAC__real overlap = si_1?flac_min((FLAC__real)strtod(si_1+1, 0),0.99f):0.2f; in FLAC__stream_encoder_set_apodization()
1746 FLAC__real overlap_units = 1.0f/(1.0f - overlap) - 1.0f; in FLAC__stream_encoder_set_apodization()
1748 FLAC__real tukey_p = si_2?(FLAC__real)strtod(si_2+1, 0):0.2f; in FLAC__stream_encoder_set_apodization()
3385FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->p… in process_subframe_()
3761 const FLAC__real lp_coeff[], in evaluate_lpc_subframe_()