Searched refs:lpc_type (Results 1 - 9 of 9) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlpc.c153 * @param lpc_type LPC method for determining coefficients,
160 enum FFLPCType lpc_type, int lpc_passes,
170 lpc_type > FF_LPC_TYPE_FIXED);
174 lpc_type != s->lpc_type) {
176 ff_lpc_init(s, blocksize, max_order, lpc_type);
179 if (lpc_type == FF_LPC_TYPE_LEVINSON) {
190 } else if (lpc_type == FF_LPC_TYPE_CHOLESKY) {
243 enum FFLPCType lpc_type)
247 s->lpc_type
156 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 max_shift, int zero_shift) argument
242 ff_lpc_init(LPCContext *s, int blocksize, int max_order, enum FFLPCType lpc_type) argument
[all...]
H A Dlpc.h53 enum FFLPCType lpc_type; member in struct:LPCContext
91 enum FFLPCType lpc_type, int lpc_passes,
98 enum FFLPCType lpc_type);
H A Dflacenc.c47 enum FFLPCType lpc_type; member in struct:CompressionOptions
160 switch (opt->lpc_type) {
271 if (s->options.lpc_type == FF_LPC_TYPE_DEFAULT)
272 s->options.lpc_type = ((int[]){ FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED,
300 if (avctx->lpc_type > FF_LPC_TYPE_DEFAULT) {
301 if (avctx->lpc_type > FF_LPC_TYPE_CHOLESKY) {
302 av_log(avctx, AV_LOG_ERROR, "unknown lpc type: %d\n", avctx->lpc_type);
305 s->options.lpc_type = avctx->lpc_type;
306 if (s->options.lpc_type
[all...]
H A Davcodec.h3047 attribute_deprecated enum AVLPCType lpc_type; member in struct:AVCodecContext
H A Doptions.c502 {"lpc_type", "deprecated, use flac-specific options", OFFSET(lpc_type), AV_OPT_TYPE_INT, {.dbl = AV_LPC_TYPE_DEFAULT }, AV_LPC_TYPE_DEFAULT, AV_LPC_TYPE_NB-1, A|E},
503 {"none", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = AV_LPC_TYPE_NONE }, INT_MIN, INT_MAX, A|E, "lpc_type"},
504 {"fixed", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = AV_LPC_TYPE_FIXED }, INT_MIN, INT_MAX, A|E, "lpc_type"},
505 {"levinson", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = AV_LPC_TYPE_LEVINSON }, INT_MIN, INT_MAX, A|E, "lpc_type"},
506 {"cholesky", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = AV_LPC_TYPE_CHOLESKY }, INT_MIN, INT_MAX, A|E, "lpc_type"},
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlpc.c167 * @param lpc_type LPC method for determining coefficients,
174 enum FFLPCType lpc_type, int lpc_passes,
184 lpc_type > FF_LPC_TYPE_FIXED);
185 av_assert0(lpc_type == FF_LPC_TYPE_CHOLESKY || lpc_type == FF_LPC_TYPE_LEVINSON);
189 lpc_type != s->lpc_type) {
191 ff_lpc_init(s, blocksize, max_order, lpc_type);
197 if (lpc_type == FF_LPC_TYPE_LEVINSON || (lpc_type
170 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 max_shift, int zero_shift) argument
268 ff_lpc_init(LPCContext *s, int blocksize, int max_order, enum FFLPCType lpc_type) argument
[all...]
H A Dlpc.h53 enum FFLPCType lpc_type; member in struct:LPCContext
92 enum FFLPCType lpc_type, int lpc_passes,
102 enum FFLPCType lpc_type);
H A Dflacenc.c56 enum FFLPCType lpc_type; member in struct:CompressionOptions
180 switch (opt->lpc_type) {
305 if (s->options.lpc_type == FF_LPC_TYPE_DEFAULT)
306 s->options.lpc_type = ((int[]){ FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED, FF_LPC_TYPE_FIXED,
332 if (s->options.lpc_type == FF_LPC_TYPE_NONE) {
335 if (s->options.lpc_type == FF_LPC_TYPE_FIXED) {
349 if (s->options.lpc_type == FF_LPC_TYPE_NONE) {
352 if (s->options.lpc_type == FF_LPC_TYPE_FIXED) {
792 if (s->options.lpc_type == FF_LPC_TYPE_NONE ||
793 s->options.lpc_type
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dflac.mak11 fate-flac-16-fixed: OPTS = -lpc_type fixed
12 fate-flac-16-lpc-%: OPTS = -lpc_type $(@:fate-flac-16-lpc-%=%)

Completed in 233 milliseconds