summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-02-28 11:39:18 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2012-02-28 12:10:18 +0100
commit1fb46f00ae05a42c8f067908829136b0220ed4b7 (patch)
tree64cf8d36a4a7ddc71a074626a735de2341812967
parent7a4a3833c376a70f88d937e5c6cbeee404a3119d (diff)
downloadgstreamer-plugins-bad-1fb46f00ae05a42c8f067908829136b0220ed4b7.tar.gz
update for metadata tags
-rw-r--r--gst-libs/gst/video/gstsurfacemeta.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst-libs/gst/video/gstsurfacemeta.c b/gst-libs/gst/video/gstsurfacemeta.c
index 01579aaec..9aee7b69c 100644
--- a/gst-libs/gst/video/gstsurfacemeta.c
+++ b/gst-libs/gst/video/gstsurfacemeta.c
@@ -49,12 +49,13 @@ const GstMetaInfo *
gst_surface_meta_get_info (void)
{
static const GstMetaInfo *meta_info = NULL;
+ static const gchar *tags[] = { "memory" };
if (meta_info == NULL) {
meta_info = gst_meta_register ("GstSurfaceMeta", "GstSurfaceMeta",
sizeof (GstSurfaceMeta),
(GstMetaInitFunction) NULL,
- (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL);
+ (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL, tags);
}
return meta_info;
}