Files
packages/anda/multimedia/ffmpeg/ffmpeg-vapoursynth-script-soname.patch
2026-05-31 16:47:01 +08:00

27 lines
735 B
Diff

From 03ce488cabd436b353aaa4bef1b848493e17317f Mon Sep 17 00:00:00 2001
From: Terra Packaging Team <terra@fyralabs.com>
Date: Sun, 31 May 2026 03:08:52 -0500
Subject: [PATCH] Fix VapourSynth dlopen
See: https://bugzilla.redhat.com/show_bug.cgi?id=2345698
---
libavformat/vapoursynth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/vapoursynth.c b/libavformat/vapoursynth.c
index 0fa5aff..e6ac20b 100644
--- a/libavformat/vapoursynth.c
+++ b/libavformat/vapoursynth.c
@@ -49,7 +49,7 @@
#else
#include <dlfcn.h>
#define VSSCRIPT_NAME "libvapoursynth-script"
- #define VSSCRIPT_LIB VSSCRIPT_NAME SLIBSUF
+ #define VSSCRIPT_LIB VSSCRIPT_NAME SLIBSUF ".0"
#endif
struct VSState {
--
2.54.0