Lines Matching defs:filt
73 int i, w, filt, coef_compress = 0, coef_len;
85 for (filt = 0; filt < tns->n_filt[i]; filt++) {
86 put_bits(&s->pb, 6 - 2 * is8, tns->length[i][filt]);
87 put_bits(&s->pb, 5 - 2 * is8, tns->order[i][filt]);
88 if (!tns->order[i][filt])
90 put_bits(&s->pb, 1, tns->direction[i][filt]);
91 coef_compress = compress_coeffs(tns->coef_idx[i][filt],
92 tns->order[i][filt], c_bits);
95 for (w = 0; w < tns->order[i][filt]; w++)
96 put_bits(&s->pb, coef_len, tns->coef_idx[i][filt][w]);
106 int w, filt, m, i, top, order, bottom, start, end, size, inc;
112 for (filt = 0; filt < tns->n_filt[w]; filt++) {
114 bottom = FFMAX(0, top - tns->length[w][filt]);
115 order = tns->order[w][filt];
120 compute_lpc_coefs(tns->coef[w][filt], order, lpc, 0, 0, 0);
126 if (tns->direction[w][filt]) {