Add fixes for avisynthplus and svt-av1 0.9.0

This commit is contained in:
Daniel Bermond
2022-03-20 16:45:42 -03:00
parent d189c3b6be
commit f04e28275d
3 changed files with 28 additions and 2 deletions
@@ -0,0 +1,11 @@
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -121,7 +121,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;