aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/faad.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-01-06 23:54:01 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-06 23:54:01 +0000
commit2eed5a461fa163b8b7ee86b9d86f46f188c101c5 (patch)
tree8849e95250c98f21dba7791250366345d485e02b /libavcodec/faad.c
parent3ffab3613915854694dd7711c00f2f8a2fa39b8d (diff)
downloadffmpeg-2eed5a461fa163b8b7ee86b9d86f46f188c101c5.tar.gz
Rename variables: faad --> libfaad, faac --> libfaac, faadbin --> libfaadbin
Originally committed as revision 7416 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/faad.c')
-rw-r--r--libavcodec/faad.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/faad.c b/libavcodec/faad.c
index df33ea0b27..80e5e0bf6c 100644
--- a/libavcodec/faad.c
+++ b/libavcodec/faad.c
@@ -35,12 +35,12 @@
#endif
/*
- * when CONFIG_FAADBIN is defined the libfaad will be opened at runtime
+ * when CONFIG_LIBFAADBIN is defined the libfaad will be opened at runtime
*/
-//#undef CONFIG_FAADBIN
-//#define CONFIG_FAADBIN
+//#undef CONFIG_LIBFAADBIN
+//#define CONFIG_LIBFAADBIN
-#ifdef CONFIG_FAADBIN
+#ifdef CONFIG_LIBFAADBIN
#include <dlfcn.h>
static const char* libfaadname = "libfaad.so.0";
#else
@@ -208,7 +208,7 @@ static int faac_decode_init(AVCodecContext *avctx)
FAACContext *s = (FAACContext *) avctx->priv_data;
faacDecConfigurationPtr faac_cfg;
-#ifdef CONFIG_FAADBIN
+#ifdef CONFIG_LIBFAADBIN
const char* err = 0;
s->handle = dlopen(libfaadname, RTLD_LAZY);
@@ -222,9 +222,9 @@ static int faac_decode_init(AVCodecContext *avctx)
do { static const char* n = "faacDec" #a; \
if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
for(;;) {
-#else /* !CONFIG_FAADBIN */
+#else /* !CONFIG_LIBFAADBIN */
#define dfaac(a, b) s->faacDec ## a = faacDec ## a
-#endif /* CONFIG_FAADBIN */
+#endif /* CONFIG_LIBFAADBIN */
// resolve all needed function calls
dfaac(Open, (faacDecHandle FAADAPI (*)(void)));
@@ -256,7 +256,7 @@ static int faac_decode_init(AVCodecContext *avctx)
#endif
#undef dfacc
-#ifdef CONFIG_FAADBIN
+#ifdef CONFIG_LIBFAADBIN
break;
}
if (err) {