mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
msdkh265dec: add support for main-444 profile
The output format is VUYA
This commit is contained in:
parent
1ee2adc580
commit
49ae5c2de4
1 changed files with 3 additions and 3 deletions
|
@ -48,19 +48,19 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS ("video/x-h265, "
|
||||
"width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], "
|
||||
"stream-format = (string) byte-stream , alignment = (string) au , "
|
||||
"profile = (string) { main, main-10, main-422-10, main-422-10-intra } ")
|
||||
"profile = (string) { main, main-10, main-422-10, main-422-10-intra, main-444 } ")
|
||||
);
|
||||
|
||||
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("video/x-raw, "
|
||||
"format = (string) { NV12, P010_10LE, YUY2, Y210 }, "
|
||||
"format = (string) { NV12, P010_10LE, YUY2, Y210, VUYA }, "
|
||||
"framerate = (fraction) [0, MAX], "
|
||||
"width = (int) [ 1, MAX ], height = (int) [ 1, MAX ],"
|
||||
"interlace-mode = (string) progressive;"
|
||||
GST_VIDEO_CAPS_MAKE_WITH_FEATURES (GST_CAPS_FEATURE_MEMORY_DMABUF,
|
||||
"{ NV12, P010_10LE, YUY2, Y210 }") ";")
|
||||
"{ NV12, P010_10LE, YUY2, Y210, VUYA }") ";")
|
||||
);
|
||||
|
||||
#define gst_msdkh265dec_parent_class parent_class
|
||||
|
|
Loading…
Reference in a new issue