Explorar o código

obs-filters: Update NVIDIA Effects SDK versions

We need to check for new versions of the NVIDIA Effects redistributables
because mismatched versions of the AUDIO and VIDEO sdk can have
different CUDA versions of the deps, which has caused crashes in obs.
It'd be way better that NVIDIA either ships a single installer with both
audio and video effects or that they auto-install with the drivers.
But meanwhile, we provide a warning to users which requires us to keep
in sync with what's released.

Signed-off-by: pkv <[email protected]>
pkv %!s(int64=2) %!d(string=hai) anos
pai
achega
79232c3cec
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      plugins/obs-filters/nvafx-load.h
  2. 1 1
      plugins/obs-filters/nvvfx-load.h

+ 1 - 1
plugins/obs-filters/nvafx-load.h

@@ -9,7 +9,7 @@
 #define NVAFX_API
 
 #ifdef LIBNVAFX_ENABLED
-#define MIN_AFX_SDK_VERSION (1 << 24 | 2 << 16 | 13 << 0)
+#define MIN_AFX_SDK_VERSION (1 << 24 | 3 << 16 | 0 << 0)
 static HMODULE nv_audiofx = NULL;
 static HMODULE nv_cuda = NULL;
 

+ 1 - 1
plugins/obs-filters/nvvfx-load.h

@@ -39,7 +39,7 @@ extern "C" {
 #define CUDARTAPI
 
 #ifdef LIBNVVFX_ENABLED
-#define MIN_VFX_SDK_VERSION (0 << 24 | 7 << 16 | 1 << 8 | 0 << 0)
+#define MIN_VFX_SDK_VERSION (0 << 24 | 7 << 16 | 2 << 8 | 0 << 0)
 static HMODULE nv_videofx = NULL;
 static HMODULE nv_cvimage = NULL;
 static HMODULE nv_cudart = NULL;