Lines Matching refs:DC_VLC_BITS
53 #define DC_VLC_BITS 9
89 code = get_vlc2(&s->gb, rv_dc_lum.table, DC_VLC_BITS, 2);
91 code = get_vlc2(&s->gb, rv_dc_chrom.table, DC_VLC_BITS, 2);
337 ff_init_vlc_from_lengths(vlc, DC_VLC_BITS, nb_lens, lens, 1,
349 for (int i = 0; i < 1 << (DC_VLC_BITS - 7 /* Length of skip prefix */); i++) {
352 rv_dc_lum.table[(0x7F << (DC_VLC_BITS - 7)) + i].sym = 255;
353 rv_dc_lum.table[(0x7F << (DC_VLC_BITS - 7)) + i].len = 18;
359 for (int i = 0; i < 1 << (DC_VLC_BITS - 9 /* Length of skip prefix */); i++) {
361 rv_dc_chrom.table[(0x1FE << (DC_VLC_BITS - 9)) + i].sym = 255;
362 rv_dc_chrom.table[(0x1FE << (DC_VLC_BITS - 9)) + i].len = 18;