mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
msdk: vpp: Add YV12, YUY2 and BGRx formats to template
This commit is contained in:
parent
96c6a04d7a
commit
76bbefe3b0
1 changed files with 3 additions and 2 deletions
|
@ -51,14 +51,15 @@ static GstStaticPadTemplate gst_msdkvpp_sink_factory =
|
|||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("{ NV12, I420, YUY2, UYVY, BGRA }")
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE
|
||||
("{ NV12, YV12, I420, YUY2, UYVY, BGRA, BGRx }")
|
||||
", " "interlace-mode = (string){ progressive, interleaved, mixed }"));
|
||||
|
||||
static GstStaticPadTemplate gst_msdkvpp_src_factory =
|
||||
GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("{ NV12, BGRA }") ", "
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("{ NV12, YUY2, BGRA, BGRx }") ", "
|
||||
"interlace-mode = (string){ progressive, interleaved, mixed }"));
|
||||
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue