Lines Matching defs:table
51 return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1);
55 int pitch, const uint8_t *table)
73 } else { /* copy two values from table */
76 dst[out++] = table[c * 2];
77 dst[out++] = table[(c * 2) + 1];
97 } else { /* add two deltas from table */
101 t = dst[out - pitch] + (table[c * 2] - 128);
105 t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
117 int pitch, const uint8_t *table)
136 } else { /* add two deltas from table */
139 t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
143 t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);