diff options
author | He Junyan <junyan.he@hotmail.com> | 2020-04-03 14:53:40 +0800 |
---|---|---|
committer | Víctor Manuel Jáquez Leal <vjaquez@igalia.com> | 2020-06-05 08:42:35 +0000 |
commit | 8486f82d980188ca86d468b6bda0e1d9e2cffdaf (patch) | |
tree | 1f2346b75f8f8e2d9f30269a949c4a2aa6dce7dc /gst | |
parent | 5c67bdaf63edd6451dafd1c4bf946a825b099fa1 (diff) |
libs: encoder: h265: Add support for MAIN 4:2:2 10 profile.
Using YUY2 as the input of the encoder can generate main 4:2:2 bit
streams and using Y210 as the input of the encoder can generate main
4:2:2 10 bit streams.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/-/merge_requests/334>
Diffstat (limited to 'gst')
-rw-r--r-- | gst/vaapi/gstvaapiencode_h265.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/vaapi/gstvaapiencode_h265.c b/gst/vaapi/gstvaapiencode_h265.c index 5b97991b..b5a19f6a 100644 --- a/gst/vaapi/gstvaapiencode_h265.c +++ b/gst/vaapi/gstvaapiencode_h265.c @@ -55,7 +55,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_vaapi_h265_encode_debug); /* *INDENT-OFF* */ static const char gst_vaapiencode_h265_src_caps_str[] = GST_CODEC_CAPS ", " - "profile = (string) { main, main-10, main-444, main-444-10 }"; + "profile = (string) { main, main-10, main-444, main-444-10, main-422-10 }"; /* *INDENT-ON* */ /* *INDENT-OFF* */ |