Searched refs:lpc_type (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | lpc.c | 198 * @param lpc_type LPC method for determining coefficients, 205 enum FFLPCType lpc_type, int lpc_passes, in ff_lpc_calc_coefs() 215 lpc_type > FF_LPC_TYPE_FIXED); in ff_lpc_calc_coefs() 216 av_assert0(lpc_type == FF_LPC_TYPE_CHOLESKY || lpc_type == FF_LPC_TYPE_LEVINSON); in ff_lpc_calc_coefs() 220 lpc_type != s->lpc_type) { in ff_lpc_calc_coefs() 222 ff_lpc_init(s, blocksize, max_order, lpc_type); in ff_lpc_calc_coefs() 228 if (lpc_type == FF_LPC_TYPE_LEVINSON || (lpc_type in ff_lpc_calc_coefs() 201 ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int min_shift, int max_shift, int zero_shift) ff_lpc_calc_coefs() argument 301 ff_lpc_init(LPCContext *s, int blocksize, int max_order, enum FFLPCType lpc_type) ff_lpc_init() argument [all...] |
H A D | lpc.h | 55 enum FFLPCType lpc_type; member 97 enum FFLPCType lpc_type, int lpc_passes, 110 enum FFLPCType lpc_type);
|
H A D | flacenc.c | 61 enum FFLPCType lpc_type; member 191 switch (opt->lpc_type) { in dprint_compression_options() 316 if (s->options.lpc_type == FF_LPC_TYPE_DEFAULT) in flac_encode_init() 317 s->options.lpc_type = ((int[]){ FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED, in flac_encode_init() 345 if (s->options.lpc_type == FF_LPC_TYPE_NONE) { in flac_encode_init() 348 } else if (s->options.lpc_type == FF_LPC_TYPE_FIXED) { in flac_encode_init() 828 if (s->options.lpc_type == FF_LPC_TYPE_NONE || in encode_residual_ch() 829 s->options.lpc_type == FF_LPC_TYPE_FIXED || n <= max_order) { in encode_residual_ch() 853 s->options.lpc_coeff_precision, coefs, shift, s->options.lpc_type, in encode_residual_ch() 1425 { "lpc_type", "LP [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | flac.mak | 12 fate-flac-16-fixed: OPTS = -lpc_type fixed 13 fate-flac-16-lpc-%: OPTS = -lpc_type $(@:fate-flac-16-lpc-%=%)
|
Completed in 4 milliseconds