diff options
author | Marton Balint <cus@passwd.hu> | 2014-02-22 17:42:20 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2014-02-26 22:46:15 +0100 |
commit | 35ead1f281ad589a436613cac0775d3e52a76ac3 (patch) | |
tree | 8c1be96e26b64764a7db8498eb9a605bddb39504 | |
parent | 1524b0fa68e0ebe94959eb4554301053f62f87ef (diff) | |
download | ffmpeg-35ead1f281ad589a436613cac0775d3e52a76ac3.tar.gz |
lavfi/frei0r: search plugins in lib64 dirs on all architectures
As Reimar Döffinger pointed out there are non-x86 64bit architectures as well.
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | libavfilter/vf_frei0r.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c index c5922fdaad..54b50b32b6 100644 --- a/libavfilter/vf_frei0r.c +++ b/libavfilter/vf_frei0r.c @@ -284,7 +284,6 @@ static av_cold int frei0r_init(AVFilterContext *ctx, if (ret < 0) 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) @@ -295,7 +294,6 @@ static av_cold int frei0r_init(AVFilterContext *ctx, if (ret < 0) return ret; } -#endif if (!s->dl_handle) { av_log(ctx, AV_LOG_ERROR, "Could not find module '%s'\n", dl_name); return AVERROR(EINVAL); |