From dbbc573253bea762d6d3080f21cc487cf9d55e61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Thu, 24 Jan 2008 19:51:29 +0000 Subject: [PATCH] fix dynamic loading of libfaad 2.6 Originally committed as revision 11606 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/libfaad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libfaad.c b/libavcodec/libfaad.c index 6de8084334..994caff787 100644 --- a/libavcodec/libfaad.c +++ b/libavcodec/libfaad.c @@ -42,7 +42,7 @@ #ifdef CONFIG_LIBFAADBIN #include -static const char* libfaadname = "libfaad.so.0"; +static const char* libfaadname = "libfaad.so"; #else #define dlopen(a) #define dlclose(a) @@ -235,7 +235,7 @@ static int faac_decode_init(AVCodecContext *avctx) return -1; } #define dfaac(a, b) \ - do { static const char* n = "faacDec" #a; \ + do { static const char* n = AV_STRINGIFY(faacDec ## a); \ if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0) for(;;) { #else /* !CONFIG_LIBFAADBIN */