Searched defs:byte_pos (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp531 int32 byte_pos; local
537 byte_pos = pos >> 3;
539 if (byte_pos > stream->data_end_pos)
541 byte_pos = stream->data_end_pos;
544 stream->read_point = byte_pos & -4;
551 PV_BitstreamFlushBits(stream, ((pos & 0x7) + ((byte_pos & 0x3) << 3)));
655 int32 byte_pos = (stream->bitcnt >> 3); local
658 ptr = stream->bitstreamBuffer + byte_pos;
660 stream->data_end_pos = PVLocateFrameHeader(ptr, (int32)stream->data_end_pos - byte_pos) + byte_pos;
666 int32 byte_pos = (stream->bitcnt >> 3); local
[all...]

Completed in 27 milliseconds