HomeSort by relevance Sort by last modified time
    Searched full:n_stuffed (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 426 int n_stuffed; local
428 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 */
430 if (stream->incnt < (nbits + n_stuffed))
436 *code = (stream->curr_word << n_stuffed) >> (32 - nbits);
445 int n_stuffed; local
447 n_stuffed = (8 - (stream->bitcnt & 0x7)) & 7;
449 if (stream->incnt < (nbits + n_stuffed))
455 *code = (stream->curr_word << n_stuffed) >> (32 - nbits);
463 int n_stuffed; local
465 n_stuffed = 8 - (stream->bitcnt & 0x7); /* 07/05/01 *
489 uint n_stuffed; local
567 uint n_stuffed; local
579 uint n_stuffed; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 234 uint n_stuffed; local
236 n_stuffed = (8 - (stream->bitcnt & 0x7)) & 0x7; /* 07/05/01 */
238 stream->bitcnt += n_stuffed;
239 stream->incnt -= n_stuffed;
246 stream->curr_word <<= n_stuffed;

Completed in 293 milliseconds