mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
meta: update for new API
This commit is contained in:
parent
a4fdb8ee44
commit
c63dc97adf
3 changed files with 5 additions and 8 deletions
|
@ -102,8 +102,7 @@ gst_meta_fenced_get_info (void)
|
|||
sizeof (GstMetaFenced),
|
||||
(GstMetaInitFunction) NULL,
|
||||
(GstMetaFreeFunction) NULL,
|
||||
(GstMetaCopyFunction) NULL,
|
||||
(GstMetaSubFunction) NULL,
|
||||
(GstMetaTransformFunction) NULL,
|
||||
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
|
||||
}
|
||||
return meta_fenced_info;
|
||||
|
|
|
@ -64,9 +64,8 @@ gst_meta_v4l2_get_info (void)
|
|||
meta_info =
|
||||
gst_meta_register ("GstMetaV4l2", "GstMetaV4l2",
|
||||
sizeof (GstMetaV4l2), (GstMetaInitFunction) NULL,
|
||||
(GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL,
|
||||
(GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL,
|
||||
(GstMetaDeserializeFunction) NULL);
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
|
||||
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
|
||||
}
|
||||
return meta_info;
|
||||
}
|
||||
|
|
|
@ -32,9 +32,8 @@ gst_meta_ximage_get_info (void)
|
|||
meta_ximage_info =
|
||||
gst_meta_register ("GstMetaXImageSrc", "GstMetaXImageSrc",
|
||||
sizeof (GstMetaXImage), (GstMetaInitFunction) NULL,
|
||||
(GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL,
|
||||
(GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL,
|
||||
(GstMetaDeserializeFunction) NULL);
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
|
||||
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
|
||||
}
|
||||
return meta_ximage_info;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue