Lines Matching refs:obu
973 AV1RawOBU *obu = unit->content; in av1d_parser_frame() local
976 if (!obu) in av1d_parser_frame()
979 header = &obu->header; in av1d_parser_frame()
983 memcpy(s->seq_ref, &obu->obu.sequence_header, sizeof(AV1RawSequenceHeader)); in av1d_parser_frame()
1014 s->raw_frame_header = &obu->obu.frame.header; in av1d_parser_frame()
1016 s->raw_frame_header = &obu->obu.frame_header; in av1d_parser_frame()
1064 raw_tile_group = &obu->obu.frame.tile_group; in av1d_parser_frame()
1066 raw_tile_group = &obu->obu.tile_group; in av1d_parser_frame()
1265 RK_S32 av1_extract_obu(AV1OBU *obu, uint8_t *buf, RK_S32 length) in av1_extract_obu() argument
1276 obu->type = type; in av1_extract_obu()
1277 obu->temporal_id = temporal_id; in av1_extract_obu()
1278 obu->spatial_id = spatial_id; in av1_extract_obu()
1280 obu->data = buf + start_pos; in av1_extract_obu()
1281 obu->size = obu_size; in av1_extract_obu()
1282 obu->raw_data = buf; in av1_extract_obu()
1283 obu->raw_size = len; in av1_extract_obu()
1286 obu->type, obu->temporal_id, obu->spatial_id, obu->size); in av1_extract_obu()
1298 AV1OBU obu; in av1d_split_frame() local
1305 RK_S32 len = av1_extract_obu(&obu, ptr, size); in av1d_split_frame()
1308 if (obu.type == AV1_OBU_FRAME_HEADER || obu.type == AV1_OBU_FRAME || in av1d_split_frame()
1309 ((obu.type == AV1_OBU_TEMPORAL_DELIMITER || obu.type == AV1_OBU_METADATA || in av1d_split_frame()
1310 obu.type == AV1_OBU_SEQUENCE_HEADER) && ctx->frame_header)) in av1d_split_frame()
1318 if (obu.type == AV1_OBU_FRAME) { in av1d_split_frame()