mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
mxfdemux: Fix resolval of identifications from the preface
This commit is contained in:
parent
61b284de0d
commit
eb78f9c8f7
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ mxf_metadata_preface_resolve (MXFMetadataBase * m, GHashTable * metadata)
|
|||
for (i = 0; i < self->n_identifications; i++) {
|
||||
current = g_hash_table_lookup (metadata, &self->identifications_uids[i]);
|
||||
if (current && MXF_IS_METADATA_IDENTIFICATION (current)) {
|
||||
if (mxf_metadata_base_resolve (m, metadata))
|
||||
if (mxf_metadata_base_resolve (current, metadata))
|
||||
self->identifications[i] = MXF_METADATA_IDENTIFICATION (current);
|
||||
}
|
||||
current = NULL;
|
||||
|
|
Loading…
Reference in a new issue