Searched refs:n_stuffed (Results 1 – 1 of 1) sorted by relevance
426 int n_stuffed; in PV_BitstreamShowBitsByteAlign() local428 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */ in PV_BitstreamShowBitsByteAlign()430 if (stream->incnt < (nbits + n_stuffed)) in PV_BitstreamShowBitsByteAlign()436 *code = (stream->curr_word << n_stuffed) >> (32 - nbits); in PV_BitstreamShowBitsByteAlign()445 int n_stuffed; in PV_BitstreamShowBitsByteAlignNoForceStuffing() local447 n_stuffed = (8 - (stream->bitcnt & 0x7)) & 7; in PV_BitstreamShowBitsByteAlignNoForceStuffing()449 if (stream->incnt < (nbits + n_stuffed)) in PV_BitstreamShowBitsByteAlignNoForceStuffing()455 *code = (stream->curr_word << n_stuffed) >> (32 - nbits); in PV_BitstreamShowBitsByteAlignNoForceStuffing()463 int n_stuffed; in PV_BitstreamByteAlign() local465 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */ in PV_BitstreamByteAlign()[all …]