Searched refs:refl (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dra144.h61 int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
62 void ff_eval_coefs(int *coefs, const int *refl);
H A Dra144.c1544 int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx) argument
1555 refl[LPC_ORDER-1] = bp2[LPC_ORDER-1];
1569 bp1[j] = ((bp2[j] - ((refl[i+1] * bp2[i-j]) >> 12)) * (0x1000000 / b)) >> 12;
1574 refl[i] = bp1[i];
1585 void ff_eval_coefs(int *coefs, const int *refl) argument
1593 b1[i] = refl[i] << 4;
1596 b1[j] = ((refl[i] * b2[i-j-1]) >> 12) + b2[j];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dra144.c1545 int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx) argument
1556 refl[LPC_ORDER-1] = bp2[LPC_ORDER-1];
1572 int a = bp2[j] - ((refl[i+1] * bp2[i-j]) >> 12);
1576 bp1[j] = ((bp2[j] - ((refl[i+1] * bp2[i-j]) >> 12)) * b) >> 12;
1582 refl[i] = bp1[i];
1593 void ff_eval_coefs(int *coefs, const int *refl) argument
1601 b1[i] = refl[i] << 4;
1604 b1[j] = ((refl[i] * b2[i-j-1]) >> 12) + b2[j];
H A Dra144.h67 int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
68 void ff_eval_coefs(int *coefs, const int *refl);
H A Dcngdec.c79 static void make_lpc_coefs(float *lpc, const float *refl, int order) argument
87 next[m] = refl[m];
89 next[i] = cur[i] + refl[m] * cur[m - i - 1];
H A Dvp9.c1609 int refl = s->left_ref_ctx[row7], refa = s->above_ref_ctx[col]; local
1611 if (refl == refa && refa == s->varcompref[1]) {
1614 if ((refa == s->fixcompref && refl == s->varcompref[0]) ||
1615 (refl == s->fixcompref && refa == s->varcompref[0])) {
1618 c = (refa == refl) ? 3 : 1;
1621 if (refa == s->varcompref[1] && refl != s->varcompref[1]) {
1624 c = (refl == s->varcompref[1] &&
1628 if (refl == s->varcompref[1] && refa != s->varcompref[1]) {
1632 refl != s->varcompref[1]) ? 2 : 4;
1635 c = (refl
[all...]

Completed in 98 milliseconds