HomeSort by relevance Sort by last modified time
    Searched refs:initial_byte_aligned_position (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 608 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) << 3)); /* ptr + i *
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 89 uint32 initial_byte_aligned_position = (psBits->dataBitPos + 7) >> 3; local
91 ptr = psBits->data + initial_byte_aligned_position;
93 i = LocateFrameHeader(ptr, psBits->numBytes - initial_byte_aligned_position);
94 if (psBits->numBytes <= initial_byte_aligned_position + i)
98 (void)movePointerTo(psBits, ((i + initial_byte_aligned_position) << 3)); /* ptr + i */
    [all...]

Completed in 491 milliseconds