mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
msdkvp9dec: add support for VP9 444
The output formats are VUYA for 8bit 444 and Y410 for 10bit 444.
This commit is contained in:
parent
b483f3499a
commit
6117a2c6bc
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue