Searched refs:n_stuffed (Results 1 – 2 of 2) sorted by relevance
429 int n_stuffed; in PV_BitstreamShowBitsByteAlign() local431 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */ in PV_BitstreamShowBitsByteAlign()433 if (stream->incnt < (nbits + n_stuffed)) in PV_BitstreamShowBitsByteAlign()439 *code = (stream->curr_word << n_stuffed) >> (32 - nbits); in PV_BitstreamShowBitsByteAlign()448 int n_stuffed; in PV_BitstreamShowBitsByteAlignNoForceStuffing() local450 n_stuffed = (8 - (stream->bitcnt & 0x7)) & 7; in PV_BitstreamShowBitsByteAlignNoForceStuffing()452 if (stream->incnt < (nbits + n_stuffed)) in PV_BitstreamShowBitsByteAlignNoForceStuffing()458 *code = (stream->curr_word << n_stuffed) >> (32 - nbits); in PV_BitstreamShowBitsByteAlignNoForceStuffing()466 int n_stuffed; in PV_BitstreamByteAlign() local468 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */ in PV_BitstreamByteAlign()[all …]
234 uint n_stuffed; in BitstreamByteAlign() local236 n_stuffed = (8 - (stream->bitcnt & 0x7)) & 0x7; /* 07/05/01 */ in BitstreamByteAlign()238 stream->bitcnt += n_stuffed; in BitstreamByteAlign()239 stream->incnt -= n_stuffed; in BitstreamByteAlign()246 stream->curr_word <<= n_stuffed; in BitstreamByteAlign()