HomeSort by relevance Sort by last modified time
    Searched refs:FLAC__MAX_LPC_ORDER (Results 1 - 4 of 4) sorted by null

  /external/flac/include/FLAC/
format.h 130 #define FLAC__MAX_LPC_ORDER (32u)
327 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
330 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER];
    [all...]
  /external/flac/libFLAC/include/private/
lpc.h 90 * 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/
lpc.c 112 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);
    [all...]
stream_encoder.c 421 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)
    [all...]

Completed in 130 milliseconds