Home | History | Annotate | Download | only in src

Lines Matching refs:byte_pos

531     int32 byte_pos;
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);
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);
669 ptr = stream->bitstreamBuffer + byte_pos;
671 stream->data_end_pos = PVLocateH263FrameHeader(ptr, (int32)stream->data_end_pos - byte_pos) + byte_pos;