diff options
author | Víctor Paesa <victorpaesa@googlemail.com> | 2010-10-03 09:49:36 +0000 |
---|---|---|
committer | Víctor Paesa <victorpaesa@googlemail.com> | 2010-10-03 09:49:36 +0000 |
commit | 524aae862574cfed0656fd9789edaa66b0817739 (patch) | |
tree | 8fb1ac791fdec2bc9202346211bfb581bb7e20a9 /libavfilter/vf_frei0r.c | |
parent | 12eef0d1ba55dd0eb36893a0d6e0fa7e04dda122 (diff) | |
download | ffmpeg-524aae862574cfed0656fd9789edaa66b0817739.tar.gz |
Use SLIBSUF instead of .so, as a more generic dynamic library suffix.
Originally committed as revision 25321 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_frei0r.c')
-rw-r--r-- | libavfilter/vf_frei0r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c index 1303b03c87..9ff325fd38 100644 --- a/libavfilter/vf_frei0r.c +++ b/libavfilter/vf_frei0r.c @@ -192,7 +192,7 @@ static void *load_path(AVFilterContext *ctx, const char *prefix, const char *nam { char path[1024]; - snprintf(path, sizeof(path), "%s%s.so", prefix, name); + snprintf(path, sizeof(path), "%s%s%s", prefix, name, SLIBSUF); av_log(ctx, AV_LOG_DEBUG, "Looking for frei0r effect in '%s'\n", path); return dlopen(path, RTLD_NOW|RTLD_LOCAL); } |