Lines Matching defs:level
64 int level, diff, i, j, run;
87 GET_RL_VLC(level, run, re, &a->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
89 if (level == 127) {
91 } else if (level != 0) {
99 level = (level * qscale * quant_matrix[j]) >> 3;
100 level = (level ^ SHOW_SBITS(re, &a->gb, 1)) - SHOW_SBITS(re, &a->gb, 1);
106 level = SHOW_SBITS(re, &a->gb, 10); SKIP_BITS(re, &a->gb, 10);
114 if (level < 0) {
115 level = -level;
116 level = (level * (unsigned)qscale * quant_matrix[j]) >> 3;
117 level = (level - 1) | 1;
118 level = -level;
120 level = (level * (unsigned)qscale * quant_matrix[j]) >> 3;
121 level = (level - 1) | 1;
125 block[j] = level;