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

  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 328 UInt restBits;
331 restBits = (stream->bitLeft & 0x7); /* modulo 8 */
333 if (restBits) /*short_video_header[0] is 1 in h263 baseline*/
336 BitstreamPutBits(stream, restBits, 0);
344 return restBits;
358 UInt restBits;
367 restBits = (stream->bitLeft & 0x7); /* modulo 8 */
369 if (restBits) /*short_video_header[0] is 1 in h263 baseline*/
372 BitstreamPutBits(stream, restBits, Mask[restBits]);
    [all...]

Completed in 225 milliseconds