summaryrefslogtreecommitdiff
path: root/sys/xvimage/xvimagepool.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-02-28 11:38:37 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2012-02-28 12:10:14 +0100
commit1c05eeece540afa316d169bf6a2d921b4de79d1d (patch)
treee49b1b86ec27d67bf741d27c33bbc8d8f0ddf615 /sys/xvimage/xvimagepool.c
parent63ace8872dd36a2cb291c77b0719d6aef2510a6e (diff)
update for metadata tags
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;
}