mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
qtdemux: Fix critical message on cenc sample grouping parsing
Inside qtdemux_parse_sbgp there is already a check to ensure the fragment group properties are not null but it is being hit in some examples and it is better to directly avoid the critical. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4576>
This commit is contained in:
parent
ed52e3a005
commit
bdff780fe9
1 changed files with 15 additions and 12 deletions
|
@ -4444,8 +4444,8 @@ qtdemux_parse_moof (GstQTDemux * qtdemux, const guint8 * buffer, guint length,
|
|||
&& (stream->protection_scheme_type == FOURCC_cenc
|
||||
|| stream->protection_scheme_type == FOURCC_cbcs)) {
|
||||
QtDemuxCencSampleSetInfo *info = stream->protection_scheme_info;
|
||||
GNode *sbgp_node, *sgpd_node;
|
||||
GstByteReader sgpd_data, sbgp_data;
|
||||
GNode *sgpd_node;
|
||||
GstByteReader sgpd_data;
|
||||
|
||||
if (info->fragment_group_properties) {
|
||||
g_ptr_array_free (info->fragment_group_properties, TRUE);
|
||||
|
@ -4471,17 +4471,20 @@ qtdemux_parse_moof (GstQTDemux * qtdemux, const guint8 * buffer, guint length,
|
|||
FOURCC_sgpd, &sgpd_data);
|
||||
}
|
||||
|
||||
sbgp_node = qtdemux_tree_get_child_by_type_full (traf_node, FOURCC_sbgp,
|
||||
&sbgp_data);
|
||||
while (sbgp_node) {
|
||||
if (qtdemux_parse_sbgp (qtdemux, stream, &sbgp_data, FOURCC_seig,
|
||||
&info->sample_to_group_map, info->default_properties,
|
||||
info->track_group_properties,
|
||||
info->fragment_group_properties)) {
|
||||
break;
|
||||
if (info->fragment_group_properties) {
|
||||
GstByteReader sbgp_data;
|
||||
GNode *sbgp_node = qtdemux_tree_get_child_by_type_full (traf_node,
|
||||
FOURCC_sbgp, &sbgp_data);
|
||||
while (sbgp_node) {
|
||||
if (qtdemux_parse_sbgp (qtdemux, stream, &sbgp_data, FOURCC_seig,
|
||||
&info->sample_to_group_map, info->default_properties,
|
||||
info->track_group_properties,
|
||||
info->fragment_group_properties)) {
|
||||
break;
|
||||
}
|
||||
sbgp_node = qtdemux_tree_get_sibling_by_type_full (sbgp_node,
|
||||
FOURCC_sgpd, &sbgp_data);
|
||||
}
|
||||
sbgp_node = qtdemux_tree_get_sibling_by_type_full (sbgp_node,
|
||||
FOURCC_sgpd, &sbgp_data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue