• Home
  • Raw
  • Download

Lines Matching refs:obu

260 gst_av1_decoder_process_sequence (GstAV1Decoder * self, GstAV1OBU * obu)  in gst_av1_decoder_process_sequence()  argument
273 obu, &seq_header); in gst_av1_decoder_process_sequence()
309 GstAV1TileGroupOBU * tile_group, GstAV1OBU * obu) in gst_av1_decoder_decode_tile_group() argument
327 tile.obu = *obu; in gst_av1_decoder_decode_tile_group()
423 gst_av1_decoder_process_frame_header (GstAV1Decoder * self, GstAV1OBU * obu) in gst_av1_decoder_process_frame_header() argument
429 res = gst_av1_parser_parse_frame_header_obu (priv->parser, obu, in gst_av1_decoder_process_frame_header()
440 gst_av1_decoder_process_tile_group (GstAV1Decoder * self, GstAV1OBU * obu) in gst_av1_decoder_process_tile_group() argument
446 res = gst_av1_parser_parse_tile_group_obu (priv->parser, obu, &tile_group); in gst_av1_decoder_process_tile_group()
452 return gst_av1_decoder_decode_tile_group (self, &tile_group, obu); in gst_av1_decoder_process_tile_group()
456 gst_av1_decoder_process_frame (GstAV1Decoder * self, GstAV1OBU * obu) in gst_av1_decoder_process_frame() argument
463 res = gst_av1_parser_parse_frame_obu (priv->parser, obu, &frame); in gst_av1_decoder_process_frame()
473 return gst_av1_decoder_decode_tile_group (self, &frame.tile_group, obu); in gst_av1_decoder_process_frame()
477 gst_av1_decoder_temporal_delimiter (GstAV1Decoder * self, GstAV1OBU * obu) in gst_av1_decoder_temporal_delimiter() argument
481 if (gst_av1_parser_parse_temporal_delimiter_obu (priv->parser, obu) == in gst_av1_decoder_temporal_delimiter()
490 gst_av1_decoder_decode_one_obu (GstAV1Decoder * self, GstAV1OBU * obu) in gst_av1_decoder_decode_one_obu() argument
494 GST_LOG_OBJECT (self, "Decode obu %s", get_obu_name (obu->obu_type)); in gst_av1_decoder_decode_one_obu()
495 switch (obu->obu_type) { in gst_av1_decoder_decode_one_obu()
497 ret = gst_av1_decoder_process_sequence (self, obu); in gst_av1_decoder_decode_one_obu()
500 ret = gst_av1_decoder_process_frame_header (self, obu); in gst_av1_decoder_decode_one_obu()
503 ret = gst_av1_decoder_process_frame (self, obu); in gst_av1_decoder_decode_one_obu()
506 ret = gst_av1_decoder_process_tile_group (self, obu); in gst_av1_decoder_decode_one_obu()
509 ret = gst_av1_decoder_temporal_delimiter (self, obu); in gst_av1_decoder_decode_one_obu()
518 GST_WARNING_OBJECT (self, "an unrecognized obu type %d", obu->obu_type); in gst_av1_decoder_decode_one_obu()
524 get_obu_name (obu->obu_type)); in gst_av1_decoder_decode_one_obu()
564 GstAV1OBU obu; in gst_av1_decoder_handle_frame() local
583 map.data + total_consumed, map.size, &obu, &consumed); in gst_av1_decoder_handle_frame()
589 ret = gst_av1_decoder_decode_one_obu (self, &obu); in gst_av1_decoder_handle_frame()
625 obu.header.obu_spatial_id < in gst_av1_decoder_handle_frame()