summaryrefslogtreecommitdiff
path: root/sys/xvimage/xvimagepool.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/xvimage/xvimagepool.c')
-rw-r--r--sys/xvimage/xvimagepool.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/xvimage/xvimagepool.c b/sys/xvimage/xvimagepool.c
index 2c7d91dc4..d5f4d2f29 100644
--- a/sys/xvimage/xvimagepool.c
+++ b/sys/xvimage/xvimagepool.c
@@ -56,13 +56,15 @@ const GstMetaInfo *
gst_xvimage_meta_get_info (void)
{
static const GstMetaInfo *xvimage_meta_info = NULL;
+ static const gchar *tags[] =
+ { "memory", "size", "colorspace", "orientation", NULL };
if (xvimage_meta_info == NULL) {
xvimage_meta_info = gst_meta_register ("GstXvImageMeta", "GstXvImageMeta",
sizeof (GstXvImageMeta),
(GstMetaInitFunction) NULL,
(GstMetaFreeFunction) gst_xvimage_meta_free,
- (GstMetaTransformFunction) NULL);
+ (GstMetaTransformFunction) NULL, tags);
}
return xvimage_meta_info;
}