Lines Matching refs:vlc
40 VLC vlc[4];
86 static int build_vlc(AVCodecContext *avctx, VLC *vlc, const uint32_t *table)
94 ff_free_vlc(vlc);
149 return ff_init_vlc_sparse(vlc, YLC_VLC_BITS, pos, lens, 2, 2,
332 ret = build_vlc(avctx, &s->vlc[i], s->table);
358 int val = get_vlc2(&gb, s->vlc[0].table, YLC_VLC_BITS, 3);
381 y1 = get_vlc2(&gb, s->vlc[1].table, YLC_VLC_BITS, 3);
382 u = get_vlc2(&gb, s->vlc[2].table, YLC_VLC_BITS, 3);
383 y2 = get_vlc2(&gb, s->vlc[1].table, YLC_VLC_BITS, 3);
384 v = get_vlc2(&gb, s->vlc[3].table, YLC_VLC_BITS, 3);
444 for (int i = 0; i < FF_ARRAY_ELEMS(s->vlc); i++)
445 ff_free_vlc(&s->vlc[i]);