From: Mathieu Duponchelle Date: Thu, 22 Aug 2013 21:06:38 +0000 (+0200) Subject: gstframepositionner: correctly tag metadata. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=17122c44fbaf131db392993a250afd6448048a7b;p=platform%2Fupstream%2Fgst-editing-services.git 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 --- 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);