Lines Matching refs:vlc
40 VLC vlc[4]; member
86 static int build_vlc(AVCodecContext *avctx, VLC *vlc, const uint32_t *table) in build_vlc() argument
94 ff_free_vlc(vlc); in build_vlc()
149 return ff_init_vlc_sparse(vlc, YLC_VLC_BITS, pos, lens, 2, 2, in build_vlc()
335 ret = build_vlc(avctx, &s->vlc[i], s->table); in decode_frame()
361 int val = get_vlc2(&gb, s->vlc[0].table, YLC_VLC_BITS, 3); in decode_frame()
384 y1 = get_vlc2(&gb, s->vlc[1].table, YLC_VLC_BITS, 3); in decode_frame()
385 u = get_vlc2(&gb, s->vlc[2].table, YLC_VLC_BITS, 3); in decode_frame()
386 y2 = get_vlc2(&gb, s->vlc[1].table, YLC_VLC_BITS, 3); in decode_frame()
387 v = get_vlc2(&gb, s->vlc[3].table, YLC_VLC_BITS, 3); in decode_frame()
447 for (int i = 0; i < FF_ARRAY_ELEMS(s->vlc); i++) in decode_end()
448 ff_free_vlc(&s->vlc[i]); in decode_end()