Lines Matching defs:idx_table
210 static void get_exponent_greedy(NellyMoserEncodeContext *s, float *cand, int *idx_table)
217 idx_table[0] = best_idx;
223 idx_table[band] = best_idx;
235 static void get_exponent_dynamic(NellyMoserEncodeContext *s, float *cand, int *idx_table)
291 idx_table[band] = path[band][best_idx];
310 int bits[NELLY_BUF_LEN], idx_table[NELLY_BANDS];
329 get_exponent_dynamic(s, cand, idx_table);
331 get_exponent_greedy(s, cand, idx_table);
337 power_idx += ff_nelly_delta_table[idx_table[band]];
338 put_bits(&pb, 5, idx_table[band]);
340 power_idx = ff_nelly_init_table[idx_table[0]];
341 put_bits(&pb, 6, idx_table[0]);