From a9d7c24ce37c283e0431246155977bdf28069ead Mon Sep 17 00:00:00 2001 From: uncor3 Date: Sun, 21 Jun 2026 01:17:09 +0300 Subject: [PATCH] fix(deploy-exe): add missing OpenGL and QML GL plugin dependencies for GStreamer --- scripts/deploy-exe.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/deploy-exe.sh b/scripts/deploy-exe.sh index fbc5bb6..9cd0d0f 100644 --- a/scripts/deploy-exe.sh +++ b/scripts/deploy-exe.sh @@ -86,7 +86,9 @@ WANTED_PLUGINS=( "libgstvideoconvertscale" "libgstmultifile" "libgstjpeg" + # GL plugin "libgstqml6" + "libgstopengl" ) mkdir -p "${OUTPUT_DIR}/gstreamer-1.0" @@ -240,7 +242,11 @@ ADDITIONAL_DLLS=( "libmd4c.dll" "zlib1.dll" "libsharpyuv-0.dll" + #gl plugins dependencies "libgstapp-1.0-0.dll" + "libgstgl-1.0-0.dll" + "libgstcontroller-1.0-0.dll" + "libgraphene-1.0-0.dll" ) echo "Copying additional MinGW runtime DLLs from MSYS2..."