From e81ca03450c0ea479c2d1a05bf7bcd64a7392eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 18 May 2025 17:55:48 +0200 Subject: [PATCH] Added: Option to .bat and .sh file to enable J2D_D3D_NO_HWCHECK --- CHANGELOG.md | 1 + resources/ffdec.bat | 3 +++ resources/ffdec.sh | 2 ++ 3 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08371bdc0..ef6892cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. (saved also to older binary format, but loading is preffered from the new TOML file, when exists) - `-configFile` and `-storeConfigFile` commandline parameters for loading/storing configuration file +- Option to .bat and .sh file to enable J2D_D3D_NO_HWCHECK ### Fixed - [#2456] FLA export - NullPointer exception while exporting to CS4 or lower via commandline diff --git a/resources/ffdec.bat b/resources/ffdec.bat index 7eea3fb6a..92ddb657f 100644 --- a/resources/ffdec.bat +++ b/resources/ffdec.bat @@ -9,6 +9,9 @@ rem Uncomment following when you encounter StackOverFlowErrors. rem If the app then terminates with OutOfMemory you can experiment with lower value. rem set FFDEC_STACK_SIZE=32m +rem Uncomment following when you want to disable checks for hardware acceleration compatibility. +rem set J2D_D3D_NO_HWCHECK=true + rem Hide VLC error output set VLC_VERBOSE=-1 diff --git a/resources/ffdec.sh b/resources/ffdec.sh index 181f8049b..45878c4cc 100644 --- a/resources/ffdec.sh +++ b/resources/ffdec.sh @@ -10,6 +10,8 @@ # If the app then terminates with OutOfMemory you can experiment with lower value. # FFDEC_STACK_SIZE=32m +# Uncomment following when you want to disable checks for hardware acceleration compatibility. +# export J2D_D3D_NO_HWCHECK=true # Hide VLC error output export VLC_VERBOSE=-1