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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp608 int32 initial_byte_aligned_position = (stream->bitcnt + 7) >> 3; local
610 ptr = stream->bitstreamBuffer + initial_byte_aligned_position;
612 i = PVLocateH263FrameHeader(ptr, stream->data_end_pos - initial_byte_aligned_position);
613 if (stream->data_end_pos <= initial_byte_aligned_position + i)
617 (void)movePointerTo(stream, ((i + initial_byte_aligned_position) << 3)); /* ptr + i */
637 int32 initial_byte_aligned_position = (stream->bitcnt + 7) >> 3; local
639 ptr = stream->bitstreamBuffer + initial_byte_aligned_position;
641 i = PVLocateFrameHeader(ptr, stream->data_end_pos - initial_byte_aligned_position);
642 if (stream->data_end_pos <= initial_byte_aligned_position + i)
646 (void)movePointerTo(stream, ((i + initial_byte_aligned_position) <<
[all...]

Completed in 23 milliseconds