Lines Matching defs:tap_quant
45 * - more tap_quant tests
65 int *tap_quant;
510 int *out, int out_entries, int channels, int *tap_quant)
546 k = (int)(floor(-xy/xx * (double)LATTICE_FACTOR / (double)(tap_quant[i]) + 0.5));
548 if (k > (LATTICE_FACTOR/tap_quant[i]))
549 k = LATTICE_FACTOR/tap_quant[i];
550 if (-k > (LATTICE_FACTOR/tap_quant[i]))
551 k = -(LATTICE_FACTOR/tap_quant[i]);
554 k *= tap_quant[i];
637 s->tap_quant = av_calloc(s->num_taps, sizeof(*s->tap_quant));
638 if (!s->tap_quant)
642 s->tap_quant[i] = ff_sqrt(i+1);
713 av_freep(&s->tap_quant);
780 s->predictor_k, s->num_taps, s->channels, s->tap_quant);
941 s->tap_quant = av_calloc(s->num_taps, sizeof(*s->tap_quant));
942 if (!s->tap_quant)
946 s->tap_quant[i] = ff_sqrt(i+1);
975 av_freep(&s->tap_quant);
1011 s->predictor_k[i] *= (unsigned) s->tap_quant[i];