Home | History | Annotate | Download | only in src

Lines Matching defs:code

62 /*  Return   : Next word with emulation prevention code removed. Everything
170 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code)
177 *code = stream->curr_word >> (32 - nBits);
194 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code)
202 *code = stream->curr_word >> (32 - nBits);
218 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code)
225 *code = stream->curr_word >> 31;
251 /* ignore the emulation prevention code, assume it has been taken out. */
255 uint code;
266 BitstreamShowBits(stream, total_bit_left, &code);
267 if (code == trailing_bits[total_bit_left])