Home
last modified time | relevance | path

Searched refs:FLAC__MAX_LPC_ORDER (Results 1 – 4 of 4) sorted by relevance

/external/flac/include/FLAC/
Dformat.h131 #define FLAC__MAX_LPC_ORDER (32u) macro
328 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
331 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER];
/external/flac/libFLAC/include/private/
Dlpc.h117 …nst FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], double er…
/external/flac/libFLAC/
Dstream_encoder.c403 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
671 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER) in init_stream_internal_()
3378 …FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->p… in process_subframe_()
3379 double lpc_error[FLAC__MAX_LPC_ORDER]; in process_subframe_()
3772 …FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; /* WATCHOUT: the size is important; some x86 intrinsic… in evaluate_lpc_subframe_()
3780 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER); in evaluate_lpc_subframe_()
3823 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER); in evaluate_lpc_subframe_()
Dlpc.c122 …nst FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], double er… in FLAC__lpc_compute_lp_coefficients() argument
125 double r, err, lpc[FLAC__MAX_LPC_ORDER]; in FLAC__lpc_compute_lp_coefficients()
129 FLAC__ASSERT(*max_order <= FLAC__MAX_LPC_ORDER); in FLAC__lpc_compute_lp_coefficients()