OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__MAX_LPC_ORDER
(Results
1 - 4
of
4
) sorted by null
/external/flac/include/FLAC/
format.h
131
#define
FLAC__MAX_LPC_ORDER
(32u)
328
FLAC__int32 qlp_coeff[
FLAC__MAX_LPC_ORDER
];
331
FLAC__int32 warmup[
FLAC__MAX_LPC_ORDER
];
[
all
...]
/external/flac/libFLAC/include/private/
lpc.h
104
* IN 0 < max_order <=
FLAC__MAX_LPC_ORDER
max LP order to compute
107
* *** lp_coeff[0,max_order-1][max_order,
FLAC__MAX_LPC_ORDER
-1] are untouched
117
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
123
void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][
FLAC__MAX_LPC_ORDER
], FLAC__double error[])
126
FLAC__double r, err, lpc[
FLAC__MAX_LPC_ORDER
];
130
FLAC__ASSERT(*max_order <=
FLAC__MAX_LPC_ORDER
);
[
all
...]
stream_encoder.c
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
)
[
all
...]
Completed in 41 milliseconds