msdkvp9dec: add support for VP9 444

The output formats are VUYA for 8bit 444 and Y410 for 10bit 444.
This commit is contained in:
Haihao Xiang 2019-06-03 16:25:57 +08:00 committed by Víctor Manuel Jáquez Leal
parent b483f3499a
commit 6117a2c6bc

View file

@ -54,12 +54,12 @@ 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 }, "
"format = (string) { NV12, P010_10LE, VUYA, Y410 }, "
"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 }") ";")
"{ NV12, P010_10LE, VUYA, Y410 }") ";")
);
#define gst_msdkvp9dec_parent_class parent_class