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

/external/flac/include/FLAC/
H A Dformat.h130 #define FLAC__MAX_LPC_ORDER (32u) macro
327 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
330 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER];
/external/flac/libFLAC/include/private/
H A Dlpc.h90 * IN 0 < max_order <= FLAC__MAX_LPC_ORDER max LP order to compute
93 * *** lp_coeff[0,max_order-1][max_order,FLAC__MAX_LPC_ORDER-1] are untouched
103 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__double error[]);
/external/flac/libFLAC/
H A Dlpc.c112 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__double error[])
115 FLAC__double r, err, ref[FLAC__MAX_LPC_ORDER], lpc[FLAC__MAX_LPC_ORDER];
119 FLAC__ASSERT(*max_order <= FLAC__MAX_LPC_ORDER);
H A Dstream_encoder.c421 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
689 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
3194 FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->protected_->max_lpc_order might be less; some asm routines need all the space */
3195 FLAC__double lpc_error[FLAC__MAX_LPC_ORDER];
3585 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
3593 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
3636 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);

Completed in 1622 milliseconds