Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__MAX_LPC_ORDER

404 	FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
674 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
3386 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 and x86 intrinsic routines need all the space */
3387 FLAC__double lpc_error[FLAC__MAX_LPC_ORDER];
3777 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; /* WATCHOUT: the size is important; some x86 intrinsic routines need more than lpc order elements */
3785 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
3828 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);