mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/frei0r: load plugins from lib64 folders as well on 64bit builds
Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1ff42685fe
commit
8e41240047
@ -284,6 +284,18 @@ static av_cold int frei0r_init(AVFilterContext *ctx,
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
#if ARCH_X86_64
|
||||||
|
if (!s->dl_handle) {
|
||||||
|
ret = load_path(ctx, &s->dl_handle, "/usr/local/lib64/frei0r-1/", dl_name);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
if (!s->dl_handle) {
|
||||||
|
ret = load_path(ctx, &s->dl_handle, "/usr/lib64/frei0r-1/", dl_name);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
if (!s->dl_handle) {
|
if (!s->dl_handle) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Could not find module '%s'\n", dl_name);
|
av_log(ctx, AV_LOG_ERROR, "Could not find module '%s'\n", dl_name);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
Loading…
Reference in New Issue
Block a user