Searched refs:max_order (Results 1 – 2 of 2) sorted by relevance
/external/flac/libFLAC/include/private/ |
D | lpc.h | 117 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp… 246 unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned max_order, unsigned …
|
/external/flac/libFLAC/ |
D | lpc.c | 123 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp… in FLAC__lpc_compute_lp_coefficients() argument 128 FLAC__ASSERT(0 != max_order); in FLAC__lpc_compute_lp_coefficients() 129 FLAC__ASSERT(0 < *max_order); in FLAC__lpc_compute_lp_coefficients() 130 FLAC__ASSERT(*max_order <= FLAC__MAX_LPC_ORDER); in FLAC__lpc_compute_lp_coefficients() 135 for(i = 0; i < *max_order; i++) { in FLAC__lpc_compute_lp_coefficients() 161 *max_order = i+1; in FLAC__lpc_compute_lp_coefficients() 1333 unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned max_order, unsigned … in FLAC__lpc_compute_best_order() argument 1338 FLAC__ASSERT(max_order > 0); in FLAC__lpc_compute_best_order() 1346 for(indx = 0, order = 1; indx < max_order; indx++, order++) { in FLAC__lpc_compute_best_order()
|