mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
update for metadata tags
This commit is contained in:
parent
36e6b25e73
commit
dda3219e4c
2 changed files with 4 additions and 2 deletions
|
@ -61,12 +61,13 @@ const GstMetaInfo *
|
|||
gst_v4l2_meta_get_info (void)
|
||||
{
|
||||
static const GstMetaInfo *meta_info = NULL;
|
||||
static const gchar *tags[] = { "memory" };
|
||||
|
||||
if (meta_info == NULL) {
|
||||
meta_info =
|
||||
gst_meta_register ("GstV4l2Meta", "GstV4l2Meta",
|
||||
sizeof (GstV4l2Meta), (GstMetaInitFunction) NULL,
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL);
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL, tags);
|
||||
}
|
||||
return meta_info;
|
||||
}
|
||||
|
|
|
@ -27,12 +27,13 @@ const GstMetaInfo *
|
|||
gst_meta_ximage_get_info (void)
|
||||
{
|
||||
static const GstMetaInfo *meta_ximage_info = NULL;
|
||||
static const gchar *tags[] = { "memory", NULL };
|
||||
|
||||
if (meta_ximage_info == NULL) {
|
||||
meta_ximage_info =
|
||||
gst_meta_register ("GstMetaXImageSrc", "GstMetaXImageSrc",
|
||||
sizeof (GstMetaXImage), (GstMetaInitFunction) NULL,
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL);
|
||||
(GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL, tags);
|
||||
}
|
||||
return meta_ximage_info;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue