Lines Matching defs:filt
1703 int w, filt, i, coef_len, coef_res, coef_compress;
1710 for (filt = 0; filt < tns->n_filt[w]; filt++) {
1712 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
1714 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) {
1717 tns->order[w][filt], tns_max_order);
1718 tns->order[w][filt] = 0;
1721 if (tns->order[w][filt]) {
1722 tns->direction[w][filt] = get_bits1(gb);
1727 for (i = 0; i < tns->order[w][filt]; i++)
1728 tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
2611 int w, filt, m, i;
2622 for (filt = 0; filt < tns->n_filt[w]; filt++) {
2624 bottom = FFMAX(0, top - tns->length[w][filt]);
2625 order = tns->order[w][filt];
2630 AAC_RENAME(compute_lpc_coefs)(tns->coef[w][filt], order, lpc, 0, 0, 0);
2636 if (tns->direction[w][filt]) {