mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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
This commit is contained in:
parent
9ed5803323
commit
17122c44fb
1 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/video/video.h>
|
||||
|
||||
#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);
|
||||
|
|
Loading…
Reference in a new issue