Home
last modified time | relevance | path

Searched refs:byte_pos (Results 1 – 1 of 1) sorted by relevance

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