Lines Matching refs:parse_code
2127 uint8_t parse_code;
2133 parse_code = buf[4];
2137 if (parse_code == DIRAC_PCODE_SEQ_HEADER) {
2185 } else if (parse_code == DIRAC_PCODE_END_SEQ) { /* [DIRAC_STD] End of Sequence */
2188 } else if (parse_code == DIRAC_PCODE_AUX) {
2197 } else if (parse_code & 0x8) { /* picture data unit */
2215 tmp = parse_code & 0x03; /* [DIRAC_STD] num_refs() */
2221 s->is_arith = (parse_code & 0x48) == 0x08; /* [DIRAC_STD] using_ac() */
2222 s->low_delay = (parse_code & 0x88) == 0x88; /* [DIRAC_STD] is_low_delay() */
2223 s->core_syntax = (parse_code & 0x88) == 0x08; /* [DIRAC_STD] is_core_syntax() */
2224 s->ld_picture = (parse_code & 0xF8) == 0xC8; /* [DIRAC_STD] is_ld_picture() */
2225 s->hq_picture = (parse_code & 0xF8) == 0xE8; /* [DIRAC_STD] is_hq_picture() */
2226 s->dc_prediction = (parse_code & 0x28) == 0x08; /* [DIRAC_STD] using_dc_prediction() */
2227 pic->reference = (parse_code & 0x0C) == 0x0C; /* [DIRAC_STD] is_reference() */
2232 if (s->version.minor == 2 && parse_code == 0x88)
2240 if ((ret = get_buffer_with_edge(avctx, pic->avframe, (parse_code & 0x0C) == 0x0C ? AV_GET_BUFFER_FLAG_REF : 0)) < 0)