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

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 74 stream->curr_word = stream->next_word = 0;
100 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
130 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
152 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
177 *code = stream->curr_word >> (32 - nBits);
202 *code = stream->curr_word >> (32 - nBits);
225 *code = stream->curr_word >> 31;
246 stream->curr_word <<= n_stuffed;
avcdec_int.h 46 uint curr_word; /* byte-swapped (MSB left) current word read from buffer */ member in struct:tagDecBitstream
avcdec_bitstream.h 40 #define BitstreamFlushBits(A,B) {(A)->bitcnt += (B); (A)->incnt -= (B); (A)->curr_word <<= (B);}
  /frameworks/base/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 238 milliseconds