From a0943aec692714736179b2ee6ebe59ac584b87bf Mon Sep 17 00:00:00 2001 From: Haihao Xiang Date: Thu, 27 Dec 2018 16:50:54 +0800 Subject: msdkvpp: don't use NV12 as default output in normal mode If so, BGRA is the preferred output format hence BGRA will be selected as input format by default, e.g. in the pipleline below, BGRA instead of NV12 is selected without renegotiation, so we can avoid the NV12 issue (see commit 3f2314a) by default. gst-launch-1.0 videotestsrc ! msdkvpp ! glimagesink --- sys/msdk/gstmsdkvpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/msdk/gstmsdkvpp.c b/sys/msdk/gstmsdkvpp.c index 95f5f17a0..d769d4084 100644 --- a/sys/msdk/gstmsdkvpp.c +++ b/sys/msdk/gstmsdkvpp.c @@ -68,7 +68,7 @@ static GstStaticPadTemplate gst_msdkvpp_src_factory = GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE_WITH_FEATURES (GST_CAPS_FEATURE_MEMORY_DMABUF, "{ BGRA, YUY2, NV12}") ";" - GST_VIDEO_CAPS_MAKE ("{ NV12, YUY2, BGRA, BGRx }") ", " + GST_VIDEO_CAPS_MAKE ("{ BGRA, NV12, YUY2, BGRx }") ", " "interlace-mode = (string){ progressive, interleaved, mixed }" ";")); enum -- cgit v1.2.1