Home
last modified time | relevance | path

Searched refs:obu_type (Results 1 – 10 of 10) sorted by relevance

/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dav1parser.c127 assert_equals_int (obu.obu_type, GST_AV1_OBU_TEMPORAL_DELIMITER); in GST_START_TEST()
141 assert_equals_int (obu.obu_type, GST_AV1_OBU_SEQUENCE_HEADER); in GST_START_TEST()
193 assert_equals_int (obu.obu_type, GST_AV1_OBU_FRAME); in GST_START_TEST()
269 assert_equals_int (obu.obu_type, GST_AV1_OBU_TEMPORAL_DELIMITER); in GST_START_TEST()
284 assert_equals_int (obu.obu_type, GST_AV1_OBU_FRAME); in GST_START_TEST()
407 assert_equals_int (obu.header.obu_type, GST_AV1_OBU_TEMPORAL_DELIMITER); in GST_START_TEST()
420 assert_equals_int (obu.header.obu_type, GST_AV1_OBU_SEQUENCE_HEADER); in GST_START_TEST()
438 assert_equals_int (obu.header.obu_type, GST_AV1_OBU_FRAME); in GST_START_TEST()
457 assert_equals_int (obu.header.obu_type, GST_AV1_OBU_TEMPORAL_DELIMITER); in GST_START_TEST()
470 assert_equals_int (obu.header.obu_type, GST_AV1_OBU_FRAME); in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/
Dgstav1parse.c1004 gst_bit_writer_put_bits_uint8 (&bs, obu->obu_type, 4); in gst_av1_parse_convert_to_annexb()
1087 gst_bit_writer_put_bits_uint8 (&bs, obu->obu_type, 4); in gst_av1_parse_convert_from_annexb()
1248 g_assert (obu->obu_type == GST_AV1_OBU_FRAME_HEADER in gst_av1_parse_frame_start_new_temporal_unit()
1249 || obu->obu_type == GST_AV1_OBU_FRAME); in gst_av1_parse_frame_start_new_temporal_unit()
1302 switch (obu->obu_type) { in gst_av1_parse_handle_one_obu()
1333 GST_WARNING_OBJECT (self, "an unrecognized obu type %d", obu->obu_type); in gst_av1_parse_handle_one_obu()
1339 _obu_name (obu->obu_type), res); in gst_av1_parse_handle_one_obu()
1364 if (obu->obu_type == GST_AV1_OBU_TEMPORAL_DELIMITER) { in gst_av1_parse_handle_one_obu()
1374 if (obu->obu_type == GST_AV1_OBU_SEQUENCE_HEADER) in gst_av1_parse_handle_one_obu()
1377 if (obu->obu_type == GST_AV1_OBU_FRAME_HEADER in gst_av1_parse_handle_one_obu()
[all …]
/third_party/ffmpeg/libavcodec/
Dcbs_av1.c831 err = ff_cbs_insert_unit_data(frag, -1, header.obu_type, in cbs_av1_split_fragment()
893 av_assert0(obu->header.obu_type == unit->type); in cbs_av1_read_unit()
913 if (obu->header.obu_type != AV1_OBU_SEQUENCE_HEADER && in cbs_av1_read_unit()
914 obu->header.obu_type != AV1_OBU_TEMPORAL_DELIMITER && in cbs_av1_read_unit()
926 switch (obu->header.obu_type) { in cbs_av1_read_unit()
967 obu->header.obu_type == in cbs_av1_read_unit()
1035 obu->header.obu_type != AV1_OBU_TILE_GROUP && in cbs_av1_read_unit()
1036 obu->header.obu_type != AV1_OBU_TILE_LIST && in cbs_av1_read_unit()
1037 obu->header.obu_type != AV1_OBU_FRAME) { in cbs_av1_read_unit()
1081 switch (obu->header.obu_type) { in cbs_av1_write_obu()
[all …]
Dav1_frame_split_bsf.c108 cur_frame_type = obu->header.obu_type; in av1_frame_split_filter()
127 cur_frame_type = obu->header.obu_type; in av1_frame_split_filter()
Dav1_metadata_bsf.c157 .header.obu_type = AV1_OBU_TEMPORAL_DELIMITER, in av1_metadata_init()
Dcbs_av1.h31 uint8_t obu_type; member
Dcbs_av1_syntax_template.c29 fc(4, obu_type, 0, AV1_OBU_PADDING); in FUNC()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/
Dgstav1decoder.c494 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()
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()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/
Dgstav1parser.c476 && obu->obu_type != GST_AV1_OBU_TILE_GROUP in av1_skip_trailing_bits()
477 && obu->obu_type != GST_AV1_OBU_TILE_LIST in av1_skip_trailing_bits()
478 && obu->obu_type != GST_AV1_OBU_FRAME) { in av1_skip_trailing_bits()
632 obu_header->obu_type = AV1_READ_BITS (br, 4); in gst_av1_parse_obu_header()
823 obu->obu_type = obu->header.obu_type; in gst_av1_parser_identify_one_obu()
824 GST_LOG ("identify obu type is %d", obu->obu_type); in gst_av1_parser_identify_one_obu()
879 if (obu->obu_type != GST_AV1_OBU_SEQUENCE_HEADER in gst_av1_parser_identify_one_obu()
880 && obu->obu_type != GST_AV1_OBU_TEMPORAL_DELIMITER in gst_av1_parser_identify_one_obu()
1150 g_return_val_if_fail (obu->obu_type == GST_AV1_OBU_SEQUENCE_HEADER, in gst_av1_parser_parse_sequence_header_obu()
1499 g_return_val_if_fail (obu->obu_type == GST_AV1_OBU_TEMPORAL_DELIMITER, in gst_av1_parser_parse_temporal_delimiter_obu()
[all …]
Dgstav1parser.h562 GstAV1OBUType obu_type; member
581 GstAV1OBUType obu_type; member