Lines Matching defs:list
76 vorbis_floor1_entry *list;
366 fc->list = av_malloc_array(fc->values, sizeof(vorbis_floor1_entry));
367 if (!fc->list)
369 fc->list[0].x = 0;
370 fc->list[1].x = 1 << fc->rangebits;
377 fc->list[i].x = a[i - 2];
379 if (ff_vorbis_ready_floor1_list(avctx, fc->list, fc->values))
584 put_bits(pb, fc->rangebits, fc->list[i].x);
756 int begin = fc->list[fc->list[FFMAX(i-1, 0)].sort].x;
757 int end = fc->list[fc->list[FFMIN(i+1, fc->values - 1)].sort].x;
781 int position = fc->list[fc->list[i].sort].x;
789 posts[fc->list[i].sort] = j;
814 int predicted = render_point(fc->list[fc->list[i].low].x,
815 posts[fc->list[i].low],
816 fc->list[fc->list[i].high].x,
817 posts[fc->list[i].high],
818 fc->list[i].x);
826 if (!coded[fc->list[i].low ])
827 coded[fc->list[i].low ] = -1;
828 if (!coded[fc->list[i].high])
829 coded[fc->list[i].high] = -1;
881 ff_vorbis_floor1_render_list(fc->list, fc->values, posts, coded,
1228 av_freep(&venc->floors[i].list);