Searched refs:restBits (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp328 UInt restBits; local
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; local
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 76 milliseconds