Lines Matching refs:state
69 uint32_t state = -1;
75 ptr = avpriv_find_start_code(ptr, end, &state);
76 if ((state & 0xFFFFFF00) != 0x100)
78 nalu_type = state & 0x1F;
106 uint32_t state = -1;
113 ptr = avpriv_find_start_code(ptr, end, &state);
114 if ((state >> 8) != START_CODE)
116 nut = (state >> 1) & 0x3F;
137 uint32_t state = -1;
141 state = (state << 8) | buf[i];
142 if (state == 0x1B3) {
144 } else if (found && state != 0x1B5 && state < 0x200 && state >= 0x100)
153 uint32_t state = -1;
156 ptr = avpriv_find_start_code(ptr, end, &state);
157 if (state == 0x1B3 || state == 0x1B6)
167 uint32_t state = -1;
171 ptr = avpriv_find_start_code(ptr, end, &state);
172 if (state == VC1_CODE_SEQHDR || state == VC1_CODE_ENTRYPOINT) {
174 } else if (charged && IS_MARKER(state))