mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
mxf: fix class struct
Fix class parent structure Metadata is now GObject
This commit is contained in:
parent
c6859960fa
commit
2694086ace
2 changed files with 5 additions and 5 deletions
|
@ -1261,7 +1261,7 @@ gst_mxf_demux_handle_metadata (GstMXFDemux * demux, const MXFUL * key,
|
|||
mxf_uuid_to_string (&MXF_METADATA_BASE (metadata)->instance_uid, str),
|
||||
g_type_name (G_TYPE_FROM_INSTANCE (old)),
|
||||
g_type_name (G_TYPE_FROM_INSTANCE (metadata)));
|
||||
gst_mini_object_unref (GST_MINI_OBJECT (metadata));
|
||||
g_object_unref (metadata);
|
||||
return GST_FLOW_ERROR;
|
||||
} else if (old
|
||||
&& MXF_METADATA_BASE (old)->offset >=
|
||||
|
@ -1273,7 +1273,7 @@ gst_mxf_demux_handle_metadata (GstMXFDemux * demux, const MXFUL * key,
|
|||
GST_DEBUG_OBJECT (demux,
|
||||
"Metadata with instance uid %s already exists and is newer",
|
||||
mxf_uuid_to_string (&MXF_METADATA_BASE (metadata)->instance_uid, str));
|
||||
gst_mini_object_unref (GST_MINI_OBJECT (metadata));
|
||||
g_object_unref (metadata);
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
|
@ -1351,7 +1351,7 @@ gst_mxf_demux_handle_descriptive_metadata (GstMXFDemux * demux,
|
|||
mxf_uuid_to_string (&MXF_METADATA_BASE (m)->instance_uid, str),
|
||||
g_type_name (G_TYPE_FROM_INSTANCE (old)),
|
||||
g_type_name (G_TYPE_FROM_INSTANCE (m)));
|
||||
gst_mini_object_unref (GST_MINI_OBJECT (m));
|
||||
g_object_unref (m);
|
||||
return GST_FLOW_ERROR;
|
||||
} else if (old
|
||||
&& MXF_METADATA_BASE (old)->offset >= MXF_METADATA_BASE (m)->offset) {
|
||||
|
@ -1362,7 +1362,7 @@ gst_mxf_demux_handle_descriptive_metadata (GstMXFDemux * demux,
|
|||
GST_DEBUG_OBJECT (demux,
|
||||
"Metadata with instance uid %s already exists and is newer",
|
||||
mxf_uuid_to_string (&MXF_METADATA_BASE (m)->instance_uid, str));
|
||||
gst_mini_object_unref (GST_MINI_OBJECT (m));
|
||||
g_object_unref (m);
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -739,7 +739,7 @@ struct _MXFDescriptiveMetadata {
|
|||
};
|
||||
|
||||
struct _MXFDescriptiveMetadataClass {
|
||||
MXFMetadataBase parent;
|
||||
MXFMetadataBaseClass parent;
|
||||
|
||||
guint8 scheme;
|
||||
guint32 type;
|
||||
|
|
Loading…
Reference in a new issue