Lines Matching defs:opt
67 float (*opt )[OPT_SIZE];
142 av_freep(&s->opt);
193 s->opt = av_malloc(NELLY_BANDS * OPT_SIZE * sizeof(float ));
195 if (!s->opt || !s->path)
240 float (*opt )[OPT_SIZE] = s->opt ;
244 opt[0][i] = INFINITY;
248 opt[0][ff_nelly_init_table[i]] = distance(cand[0], ff_nelly_init_table[i], 0);
261 if ( isinf(opt[band - 1][i]) )
268 tmp = opt[band - 1][i] + distance(idx, power_candidate, band);
269 if (opt[band][idx] > tmp) {
270 opt[band][idx] = tmp;
285 if (best_val > opt[band][i]) {
286 best_val = opt[band][i];