Home | History | Annotate | Download | only in src

Lines Matching defs:pos

137     uint32 pos = 0;
145 coef2 = buffer[pos++];
146 coef3 = buffer[pos++];
149 if (pos >= buffer_length) {
156 coef3 = buffer[pos++];
165 nal_len |= buffer[pos++]<<(size_of_nal_length_field<<3);
179 if (pos + 2 > (nal_len + sizeofNalLengthField)) {
184 nalu_type = (buffer[pos] & 0x7E)>>1 ; //=== nal_unit_type
186 DEBUG_PRINT_LOW("@#@# Pos = %x NalType = %x buflen = %u", pos-1, nalu_type, (unsigned int) buffer_length);
206 bFirstSliceInPic = ((buffer[pos+2] & 0x80)>>7);