mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst-element-maker: fix -template-video caps string
Don't forget separator.
This commit is contained in:
parent
3991742d77
commit
9aa9903430
2 changed files with 20 additions and 20 deletions
|
@ -5,16 +5,16 @@
|
||||||
% pad-template
|
% pad-template
|
||||||
/* FIXME: add/remove formats you can handle */
|
/* FIXME: add/remove formats you can handle */
|
||||||
#define VIDEO_SINK_CAPS \
|
#define VIDEO_SINK_CAPS \
|
||||||
GST_VIDEO_CAPS_RGBA \
|
GST_VIDEO_CAPS_RGBA "; " \
|
||||||
GST_VIDEO_CAPS_ARGB \
|
GST_VIDEO_CAPS_ARGB "; " \
|
||||||
GST_VIDEO_CAPS_BGRA \
|
GST_VIDEO_CAPS_BGRA "; " \
|
||||||
GST_VIDEO_CAPS_ABGR \
|
GST_VIDEO_CAPS_ABGR "; " \
|
||||||
GST_VIDEO_CAPS_RGBx \
|
GST_VIDEO_CAPS_RGBx "; " \
|
||||||
GST_VIDEO_CAPS_xRGB \
|
GST_VIDEO_CAPS_xRGB "; " \
|
||||||
GST_VIDEO_CAPS_BGRx \
|
GST_VIDEO_CAPS_BGRx "; " \
|
||||||
GST_VIDEO_CAPS_xBGR \
|
GST_VIDEO_CAPS_xBGR "; " \
|
||||||
GST_VIDEO_CAPS_RGB \
|
GST_VIDEO_CAPS_RGB "; " \
|
||||||
GST_VIDEO_CAPS_BGR \
|
GST_VIDEO_CAPS_BGR "; " \
|
||||||
GST_VIDEO_CAPS_YUV("{ AYUV }")
|
GST_VIDEO_CAPS_YUV("{ AYUV }")
|
||||||
|
|
||||||
static GstStaticPadTemplate gst_replace_sink_template =
|
static GstStaticPadTemplate gst_replace_sink_template =
|
||||||
|
|
|
@ -5,16 +5,16 @@
|
||||||
% pad-template
|
% pad-template
|
||||||
/* FIXME: add/remove formats you can handle */
|
/* FIXME: add/remove formats you can handle */
|
||||||
#define VIDEO_SRC_CAPS \
|
#define VIDEO_SRC_CAPS \
|
||||||
GST_VIDEO_CAPS_RGBA \
|
GST_VIDEO_CAPS_RGBA "; " \
|
||||||
GST_VIDEO_CAPS_ARGB \
|
GST_VIDEO_CAPS_ARGB "; " \
|
||||||
GST_VIDEO_CAPS_BGRA \
|
GST_VIDEO_CAPS_BGRA "; " \
|
||||||
GST_VIDEO_CAPS_ABGR \
|
GST_VIDEO_CAPS_ABGR "; " \
|
||||||
GST_VIDEO_CAPS_RGBx \
|
GST_VIDEO_CAPS_RGBx "; " \
|
||||||
GST_VIDEO_CAPS_xRGB \
|
GST_VIDEO_CAPS_xRGB "; " \
|
||||||
GST_VIDEO_CAPS_BGRx \
|
GST_VIDEO_CAPS_BGRx "; " \
|
||||||
GST_VIDEO_CAPS_xBGR \
|
GST_VIDEO_CAPS_xBGR "; " \
|
||||||
GST_VIDEO_CAPS_RGB \
|
GST_VIDEO_CAPS_RGB "; " \
|
||||||
GST_VIDEO_CAPS_BGR \
|
GST_VIDEO_CAPS_BGR "; " \
|
||||||
GST_VIDEO_CAPS_YUV("{ AYUV }")
|
GST_VIDEO_CAPS_YUV("{ AYUV }")
|
||||||
|
|
||||||
static GstStaticPadTemplate gst_replace_src_template =
|
static GstStaticPadTemplate gst_replace_src_template =
|
||||||
|
|
Loading…
Reference in a new issue