Lines Matching defs:level
136 int level, i, j, run;
144 Escaped level and run values a decoded differently */
151 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
153 if (level == 127) {
155 } else if (level != 0) {
163 level = (level*quant_matrix[j]) >> 4;
164 level = (level-1)|1;
165 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
170 level = SHOW_SBITS(re, &s->gb, 10); SKIP_BITS(re, &s->gb, 10);
182 if (level < 0) {
183 level = -level;
184 level = (level*quant_matrix[j]) >> 4;
185 level = (level-1)|1;
186 level = -level;
188 level = (level*quant_matrix[j]) >> 4;
189 level = (level-1)|1;
193 block[j] = level;