From e17e88e033842c8162a0d7e8b7d79a6a96e7cd49 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Olivier=20Cr=C3=AAte?= Date: Fri, 2 Oct 2020 18:46:56 -0400 Subject: [PATCH] msdkh264dec: Accept constrained-high and progressive-high profiles They're just subsets of the high profile. Part-of: --- sys/msdk/gstmsdkh264dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/msdk/gstmsdkh264dec.c b/sys/msdk/gstmsdkh264dec.c index f59864b..caeda8e 100644 --- a/sys/msdk/gstmsdkh264dec.c +++ b/sys/msdk/gstmsdkh264dec.c @@ -44,7 +44,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", GST_STATIC_CAPS ("video/x-h264, " "width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], " "stream-format = (string) byte-stream , alignment = (string) au , " - "profile = (string) { high, main, baseline, constrained-baseline }") + "profile = (string) { high, progressive-high, constrained-high, main, baseline, constrained-baseline }") ); #define gst_msdkh264dec_parent_class parent_class -- 2.7.4