Lines Matching refs:FLAC__real
202 const FLAC__real lp_coeff[],
321 …FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point ver…
322 …FLAC__real *real_signal_mid_side[2]; /* (@@@ currently unused) the floating-point ver…
323 …FLAC__real *window[FLAC__MAX_APODIZATION_FUNCTIONS]; /* the pre-computed floating-point window for…
324 FLAC__real *windowed_signal; /* the integer_signal[] * current window[] */
363 …d (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, F…
389 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) */
390 FLAC__real *real_signal_mid_side_unaligned[2]; /* (@@@ currently unused) */
391 FLAC__real *window_unaligned[FLAC__MAX_APODIZATION_FUNCTIONS];
392 FLAC__real *windowed_signal_unaligned;
403 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
1686 FLAC__real stddev = (FLAC__real)strtod(specification+6, 0); in FLAC__stream_encoder_set_apodization()
1705 FLAC__real p = (FLAC__real)strtod(specification+6, 0); in FLAC__stream_encoder_set_apodization()
1714 FLAC__real overlap = si_1?flac_min((FLAC__real)strtod(si_1+1, 0),0.99f):0.1f; in FLAC__stream_encoder_set_apodization()
1715 FLAC__real overlap_units = 1.0f/(1.0f - overlap) - 1.0f; in FLAC__stream_encoder_set_apodization()
1717 FLAC__real tukey_p = si_2?(FLAC__real)strtod(si_2+1, 0):0.2f; in FLAC__stream_encoder_set_apodization()
1735 FLAC__real overlap = si_1?flac_min((FLAC__real)strtod(si_1+1, 0),0.99f):0.2f; in FLAC__stream_encoder_set_apodization()
1736 FLAC__real overlap_units = 1.0f/(1.0f - overlap) - 1.0f; in FLAC__stream_encoder_set_apodization()
1738 FLAC__real tukey_p = si_2?(FLAC__real)strtod(si_2+1, 0):0.2f; in FLAC__stream_encoder_set_apodization()
3378 …FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->p… in process_subframe_()
3757 const FLAC__real lp_coeff[], in evaluate_lpc_subframe_()