From 7f1e1d0d9d7760a13ab32dba1ab2ccec6cfe8942 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Fri, 25 Oct 2019 21:47:01 +1100 Subject: [PATCH] qmlglsrc: fix vertical flip matrix Some time ago libgstgl defined the majorness of matrices it uses. The majorness used by qmlglsrc was incompatible with the libgstgl. --- ext/qt/gstqtsrc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/qt/gstqtsrc.cc b/ext/qt/gstqtsrc.cc index 1cf9592..1141365 100644 --- a/ext/qt/gstqtsrc.cc +++ b/ext/qt/gstqtsrc.cc @@ -79,9 +79,9 @@ G_DEFINE_TYPE_WITH_CODE (GstQtSrc, gst_qt_src, static const gfloat vertical_flip_matrix[] = { 1.0f, 0.0f, 0.0f, 0.0f, - 0.0f, -1.0f, 0.0f, 1.0f, + 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, - 0.0f, 0.0f, 0.0f, 1.0f, + 0.0f, 1.0f, 0.0f, 1.0f, }; static void -- 2.7.4