Searched refs:vlcs (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | mjpegdec.c | 79 ff_free_vlc(&s->vlcs[ht[i].class][ht[i].index]); in init_default_huffman_tables() 80 ret = ff_mjpeg_build_vlc(&s->vlcs[ht[i].class][ht[i].index], in init_default_huffman_tables() 275 ff_free_vlc(&s->vlcs[class][index]); in ff_mjpeg_decode_dht() 278 if ((ret = ff_mjpeg_build_vlc(&s->vlcs[class][index], bits_table, in ff_mjpeg_decode_dht() 283 ff_free_vlc(&s->vlcs[2][index]); in ff_mjpeg_decode_dht() 284 if ((ret = ff_mjpeg_build_vlc(&s->vlcs[2][index], bits_table, in ff_mjpeg_decode_dht() 784 code = get_vlc2(&s->gb, s->vlcs[0][dc_index].table, 9, 2); in mjpeg_decode_dc() 788 0, dc_index, &s->vlcs[0][dc_index]); in mjpeg_decode_dc() 819 GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2); in decode_block() 883 GET_VLC(code, re, &s->gb, s->vlcs[2][ac_index].table, 9, 2); in decode_block_progressive() [all …]
|
D | mjpegdec.h | 65 VLC vlcs[3][4]; member
|