Home
last modified time | relevance | path

Searched refs:n_stuffed (Results 1 – 2 of 2) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/dec/src/
Dbitstream.cpp429 int n_stuffed; in PV_BitstreamShowBitsByteAlign() local
431 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() local
450 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() local
468 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */ in PV_BitstreamByteAlign()
[all …]
/external/opencore/codecs_v2/video/avc_h264/dec/src/
Davc_bitstream.cpp234 uint n_stuffed; in BitstreamByteAlign() local
236 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()