msdkh265dec: add support for main-444 profile

The output format is VUYA
This commit is contained in:
Haihao Xiang 2019-05-31 12:48:15 +08:00 committed by Víctor Manuel Jáquez Leal
parent 1ee2adc580
commit 49ae5c2de4

View file

@ -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