Lines Matching defs:level
276 int level, i, j, run;
289 level = get_bits(&s->gb, 8);
291 if ((level & 0x7F) == 0) {
293 level, s->mb_x, s->mb_y);
296 /* The code 1000 0000 is not used, the reconstruction level of 1024
298 if (level == 255)
299 level = 128;
300 block[0] = level;
304 // EOB Not possible for first level when cbp is available (that's why the table is different)
326 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TCOEFF_VLC_BITS, 2, 0);
328 if (level) {
335 /* The remaining combinations of (run, level) are encoded with a
337 * level. */
340 level = SHOW_SBITS(re, &s->gb, 8);
342 } else if (level == 0) {
346 level = -level;
357 block[j] = level;