Home | History | Annotate | Download | only in src

Lines Matching defs:table_entries

731         uint32_t table_entries = 0;
734 table_entries += huff->huffman_table[table_id].num_dc_codes[bit_ind];
737 ctx->symbol_codes[0][table_id] =(vlc_symbol_code_jpeg *)malloc(sizeof(vlc_symbol_code_jpeg) * table_entries);
755 while (huff_ind < table_entries) {
768 for (table_ind = 0; table_ind < table_entries; table_ind++) {
773 ctx->symbol_stats[0][table_id].num_codes = table_entries;
777 table_entries = 0;
779 table_entries += huff->huffman_table[table_id].num_ac_codes[bit_ind];
783 ctx->symbol_codes[1][table_id] = (vlc_symbol_code_jpeg *)malloc(sizeof(vlc_symbol_code_jpeg) * table_entries);
800 while (huff_ind < table_entries) {
812 for (table_ind = 0; table_ind < table_entries; table_ind++) {
816 ctx->symbol_stats[1][table_id].num_codes = table_entries;