Lines Matching defs:code
64 * number next 3 are code */
99 int len, code;
103 code = 111; /* rl->n */
105 code = rl->index_run[0][run] + alevel - 1;
107 if (code < 111) { /* rl->n */
109 len = rl->table_vlc[code][1] + 1;
242 "Drop frame time code only allowed with 1001/30000 fps\n");
405 /* time code: we must convert from the real frame rate to a
635 int code, sign, bits;
643 code = (val >> bit_size) + 1;
649 code = (val >> bit_size) + 1;
654 av_assert2(code > 0 && code <= 16);
657 ff_mpeg12_mbMotionVectorTable[code][1],
658 ff_mpeg12_mbMotionVectorTable[code][0]);
703 int code, component;
723 code = ((uint32_t)level >> 31); /* the sign bit */
724 put_bits(&s->pb, 2, code | 0x02);
750 code = ff_rl_mpeg1.index_run[0][run] + alevel - 1;
752 put_bits(&s->pb, table_vlc[code][1] + 1,
753 (table_vlc[code][0] << 1) + sign);
1079 int bits, code;
1088 code = (ff_mpeg12_vlc_dc_lum_code[index] << index) +
1090 mpeg1_lum_dc_uni[i + 255] = bits + (code << 8);
1093 code = (ff_mpeg12_vlc_dc_chroma_code[index] << index) +
1095 mpeg1_chr_dc_uni[i + 255] = bits + (code << 8);
1105 int val, bit_size, code;
1113 code = (val >> bit_size) + 1;
1114 if (code < 17)
1115 len = ff_mpeg12_mbMotionVectorTable[code][1] +