提交 842bc312 编写于 作者: P Paul B Mahol

avfilter/af_ladspa: check another directory for plugins

上级 9a24610b
......@@ -426,6 +426,11 @@ static av_cold int init(AVFilterContext *ctx)
}
av_free(paths);
if (!s->dl_handle && (paths = av_asprintf("%s/.ladspa", getenv("HOME")))) {
s->dl_handle = try_load(paths, s->dl_name);
av_free(paths);
}
if (!s->dl_handle && (paths = av_asprintf("%s/.ladspa/lib", getenv("HOME")))) {
s->dl_handle = try_load(paths, s->dl_name);
av_free(paths);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册