Files
ffmpeg-PKGBUILD/060-ffmpeg-fix-segfault-with-avisynthplus.patch
T
Daniel Bermond 09b95fa8b5 Update to version 6.1
Also in this update:
- add missing libharfbuzz
- add libopenvino
- add depends that were implicitly satisfied
2023-11-14 21:00:44 -03:00

12 lines
395 B
Diff

--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -142,7 +142,7 @@ static av_cold void avisynth_atexit_handler(void);
static av_cold int avisynth_load_library(void)
{
- avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_LOCAL);
+ avs_library.library = dlopen(AVISYNTH_LIB, RTLD_NOW | RTLD_DEEPBIND);
if (!avs_library.library)
return AVERROR_UNKNOWN;