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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 531 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...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 66 uint32 byte_pos; local
72 byte_pos = pos >> 3;
74 if (byte_pos > (psBits->numBytes - psBits->bytePos))
76 byte_pos = (psBits->numBytes - psBits->bytePos);
79 psBits->bytePos = byte_pos & -4;
81 FlushBits(psBits, ((pos & 0x7) + ((byte_pos & 0x3) << 3)));
    [all...]

Completed in 49 milliseconds