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

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp55 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
56 stream->next_word <<= (31 - stream->incnt);
57 stream->next_word <<= 1;
77 stream->next_word = 0;
81 stream->next_word |= (v[i] << ((3 - i) << 3));
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
87 stream->next_word <<= (31 - num_bits);
88 stream->next_word <<= 1;
104 stream->next_word = ((uint32)v[0] << 24) | (v[1] << 16) | (v[2] << 8) | v[3];
107 stream->curr_word |= (stream->next_word >> num_bit
[all...]
H A Dmp4lib_int.h37 uint32 next_word; member in struct:tagBitstream

Completed in 177 milliseconds