From 17122c44fbaf131db392993a250afd6448048a7b Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Thu, 22 Aug 2013 23:06:38 +0200 Subject: [PATCH] gstframepositionner: correctly tag metadata. We do not use GST_VIDEO_META_TAG_STR as it would mean depending on GstVideo which is not the case right now --- ges/gstframepositionner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ges/gstframepositionner.c b/ges/gstframepositionner.c index 22a6431..7ae25d8 100644 --- a/ges/gstframepositionner.c +++ b/ges/gstframepositionner.c @@ -22,6 +22,7 @@ #endif #include +#include #include "gstframepositionner.h" @@ -384,7 +385,7 @@ GType gst_frame_positionner_meta_api_get_type (void) { static volatile GType type; - static const gchar *tags[] = { "alpha", "posx", "posy", "zorder", NULL }; + static const gchar *tags[] = { "video", NULL }; if (g_once_init_enter (&type)) { GType _type = gst_meta_api_type_register ("GstFramePositionnerApi", tags); -- 2.7.4