HomeSort by relevance Sort by last modified time
    Searched refs:curr_word (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 55 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
107 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
150 stream->curr_word = stream->next_word = 0;
184 *code = stream->curr_word;
202 *code = stream->curr_word >> (32 - nbits);
226 *code = stream->curr_word >> (32 - nbits);
247 *code = stream->curr_word >> 17;
266 *code = stream->curr_word >> 19;
280 code = stream->curr_word >> (32 - nbits)
    [all...]
bitstream.h 31 #define PV_BitstreamFlushBits(A,B) {(A)->bitcnt += (B); (A)->incnt -= (B); (A)->curr_word <<= (B);}
62 *code = stream->curr_word >> (32 - nbits);
78 *code = stream->curr_word >> 17;
92 *code = stream->curr_word >> 19;
104 code = stream->curr_word >> (32 - nbits);
119 code = stream->curr_word >> 31;
mp4lib_int.h 36 uint32 curr_word; member in struct:tagBitstream

Completed in 123 milliseconds