mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Rename variables: faad --> libfaad, faac --> libfaac, faadbin --> libfaadbin
Originally committed as revision 7416 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3ffab36139
commit
2eed5a461f
38
configure
vendored
38
configure
vendored
@ -418,9 +418,6 @@ CONFIG_LIST='
|
|||||||
bktr
|
bktr
|
||||||
dc1394
|
dc1394
|
||||||
dv1394
|
dv1394
|
||||||
faac
|
|
||||||
faad
|
|
||||||
faadbin
|
|
||||||
ffmpeg
|
ffmpeg
|
||||||
ffplay
|
ffplay
|
||||||
ffserver
|
ffserver
|
||||||
@ -429,6 +426,9 @@ CONFIG_LIST='
|
|||||||
liba52
|
liba52
|
||||||
liba52bin
|
liba52bin
|
||||||
libdts
|
libdts
|
||||||
|
libfaac
|
||||||
|
libfaad
|
||||||
|
libfaadbin
|
||||||
libgsm
|
libgsm
|
||||||
libnut
|
libnut
|
||||||
libogg
|
libogg
|
||||||
@ -592,15 +592,15 @@ ipv6="yes"
|
|||||||
zlib="yes"
|
zlib="yes"
|
||||||
liba52="no"
|
liba52="no"
|
||||||
liba52bin="no"
|
liba52bin="no"
|
||||||
|
libfaac="no"
|
||||||
|
libfaad="no"
|
||||||
|
libfaadbin="no"
|
||||||
libgsm="no"
|
libgsm="no"
|
||||||
mp3lame="no"
|
mp3lame="no"
|
||||||
libdts="no"
|
libdts="no"
|
||||||
libnut="no"
|
libnut="no"
|
||||||
libogg="no"
|
libogg="no"
|
||||||
libvorbis="no"
|
libvorbis="no"
|
||||||
faad="no"
|
|
||||||
faadbin="no"
|
|
||||||
faac="no"
|
|
||||||
xvid="no"
|
xvid="no"
|
||||||
x264="no"
|
x264="no"
|
||||||
pp="no"
|
pp="no"
|
||||||
@ -954,11 +954,11 @@ for opt do
|
|||||||
--enable-vorbis) libvorbis="yes"
|
--enable-vorbis) libvorbis="yes"
|
||||||
pkg_requires="$pkg_requires vorbis vorbisenc"
|
pkg_requires="$pkg_requires vorbis vorbisenc"
|
||||||
;;
|
;;
|
||||||
--enable-faad) faad="yes"
|
--enable-faad) libfaad="yes"
|
||||||
;;
|
;;
|
||||||
--enable-faadbin) faadbin="yes"
|
--enable-faadbin) libfaadbin="yes"
|
||||||
;;
|
;;
|
||||||
--enable-faac) faac="yes"
|
--enable-faac) libfaac="yes"
|
||||||
;;
|
;;
|
||||||
--enable-xvid) xvid="yes"
|
--enable-xvid) xvid="yes"
|
||||||
;;
|
;;
|
||||||
@ -1148,7 +1148,7 @@ if test "$gpl" != "yes"; then
|
|||||||
die "libdts is under GPL and --enable-gpl is not specified."
|
die "libdts is under GPL and --enable-gpl is not specified."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$faad" != "no" -o "$faadbin" != "no"; then
|
if test "$libfaad" != "no" -o "$libfaadbin" != "no"; then
|
||||||
if check_header faad.h; then
|
if check_header faad.h; then
|
||||||
check_cc << EOF
|
check_cc << EOF
|
||||||
#include <faad.h>
|
#include <faad.h>
|
||||||
@ -1161,8 +1161,8 @@ EOF
|
|||||||
die "FAAD2 is under GPL and --enable-gpl is not specified."
|
die "FAAD2 is under GPL and --enable-gpl is not specified."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
faad="no"
|
libfaad="no"
|
||||||
faadbin="no"
|
libfaadbin="no"
|
||||||
echo "FAAD test failed."
|
echo "FAAD test failed."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -1474,9 +1474,9 @@ enabled x264 && require x264 x264.h x264_encoder_open -lx264
|
|||||||
enabled dc1394 && require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394
|
enabled dc1394 && require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394
|
||||||
enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
|
enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
|
||||||
|
|
||||||
# Ugh, faac uses stdcall calling convention on win32 so we can't use
|
# Ugh, libfaac uses stdcall calling convention on win32 so we can't use
|
||||||
# the generic test functions
|
# the generic test functions
|
||||||
if enabled faac; then
|
if enabled libfaac; then
|
||||||
save_flags
|
save_flags
|
||||||
temp_extralibs -lfaac
|
temp_extralibs -lfaac
|
||||||
check_ld <<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found"
|
check_ld <<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found"
|
||||||
@ -1493,7 +1493,7 @@ fi
|
|||||||
|
|
||||||
# Ugh, recent faad2 versions have renamed all functions and #define the
|
# Ugh, recent faad2 versions have renamed all functions and #define the
|
||||||
# old names in faad.h. Generic tests won't work.
|
# old names in faad.h. Generic tests won't work.
|
||||||
if enabled faad; then
|
if enabled libfaad; then
|
||||||
save_flags
|
save_flags
|
||||||
temp_extralibs -lfaad
|
temp_extralibs -lfaad
|
||||||
check_ld <<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found"
|
check_ld <<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found"
|
||||||
@ -1550,7 +1550,7 @@ if test "$vhook" = "default"; then
|
|||||||
vhook="$dlopen"
|
vhook="$dlopen"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if enabled_any vhook liba52bin faadbin; then
|
if enabled_any vhook liba52bin libfaadbin; then
|
||||||
add_extralibs $ldl
|
add_extralibs $ldl
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1795,9 +1795,9 @@ echo "AVISynth enabled $avisynth"
|
|||||||
echo "liba52 support $liba52"
|
echo "liba52 support $liba52"
|
||||||
echo "liba52 dlopened $liba52bin"
|
echo "liba52 dlopened $liba52bin"
|
||||||
echo "libdts support $libdts"
|
echo "libdts support $libdts"
|
||||||
echo "libfaac enabled $faac"
|
echo "libfaac enabled $libfaac"
|
||||||
echo "libfaad enabled $faad"
|
echo "libfaad enabled $libfaad"
|
||||||
echo "faadbin enabled $faadbin"
|
echo "faadbin enabled $libfaadbin"
|
||||||
echo "libgsm enabled $libgsm"
|
echo "libgsm enabled $libgsm"
|
||||||
echo "libmp3lame enabled $mp3lame"
|
echo "libmp3lame enabled $mp3lame"
|
||||||
echo "libnut enabled $libnut"
|
echo "libnut enabled $libnut"
|
||||||
|
@ -243,8 +243,8 @@ OBJS-$(CONFIG_ADPCM_XA_ENCODER) += adpcm.o
|
|||||||
OBJS-$(CONFIG_ADPCM_YAMAHA_DECODER) += adpcm.o
|
OBJS-$(CONFIG_ADPCM_YAMAHA_DECODER) += adpcm.o
|
||||||
OBJS-$(CONFIG_ADPCM_YAMAHA_ENCODER) += adpcm.o
|
OBJS-$(CONFIG_ADPCM_YAMAHA_ENCODER) += adpcm.o
|
||||||
|
|
||||||
OBJS-$(CONFIG_FAAD) += faad.o
|
OBJS-$(CONFIG_LIBFAAD) += faad.o
|
||||||
OBJS-$(CONFIG_FAAC) += faac.o
|
OBJS-$(CONFIG_LIBFAAC) += faac.o
|
||||||
OBJS-$(CONFIG_XVID) += xvidff.o xvid_rc.o
|
OBJS-$(CONFIG_XVID) += xvidff.o xvid_rc.o
|
||||||
OBJS-$(CONFIG_X264) += x264.o
|
OBJS-$(CONFIG_X264) += x264.o
|
||||||
OBJS-$(CONFIG_MP3LAME) += mp3lameaudio.o
|
OBJS-$(CONFIG_MP3LAME) += mp3lameaudio.o
|
||||||
|
@ -160,7 +160,7 @@ void avcodec_register_all(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* audio codecs */
|
/* audio codecs */
|
||||||
#ifdef CONFIG_FAAD
|
#ifdef CONFIG_LIBFAAD
|
||||||
REGISTER_DECODER(AAC, aac);
|
REGISTER_DECODER(AAC, aac);
|
||||||
REGISTER_DECODER(MPEG4AAC, mpeg4aac);
|
REGISTER_DECODER(MPEG4AAC, mpeg4aac);
|
||||||
#endif
|
#endif
|
||||||
@ -180,7 +180,7 @@ void avcodec_register_all(void)
|
|||||||
#ifdef CONFIG_LIBDTS
|
#ifdef CONFIG_LIBDTS
|
||||||
REGISTER_DECODER(DTS, dts);
|
REGISTER_DECODER(DTS, dts);
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_FAAC
|
#ifdef CONFIG_LIBFAAC
|
||||||
REGISTER_ENCODER(FAAC, faac);
|
REGISTER_ENCODER(FAAC, faac);
|
||||||
#endif
|
#endif
|
||||||
REGISTER_ENCDEC (FLAC, flac);
|
REGISTER_ENCDEC (FLAC, flac);
|
||||||
|
@ -35,12 +35,12 @@
|
|||||||
#endif
|
#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
|
//#undef CONFIG_LIBFAADBIN
|
||||||
//#define CONFIG_FAADBIN
|
//#define CONFIG_LIBFAADBIN
|
||||||
|
|
||||||
#ifdef CONFIG_FAADBIN
|
#ifdef CONFIG_LIBFAADBIN
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
static const char* libfaadname = "libfaad.so.0";
|
static const char* libfaadname = "libfaad.so.0";
|
||||||
#else
|
#else
|
||||||
@ -208,7 +208,7 @@ static int faac_decode_init(AVCodecContext *avctx)
|
|||||||
FAACContext *s = (FAACContext *) avctx->priv_data;
|
FAACContext *s = (FAACContext *) avctx->priv_data;
|
||||||
faacDecConfigurationPtr faac_cfg;
|
faacDecConfigurationPtr faac_cfg;
|
||||||
|
|
||||||
#ifdef CONFIG_FAADBIN
|
#ifdef CONFIG_LIBFAADBIN
|
||||||
const char* err = 0;
|
const char* err = 0;
|
||||||
|
|
||||||
s->handle = dlopen(libfaadname, RTLD_LAZY);
|
s->handle = dlopen(libfaadname, RTLD_LAZY);
|
||||||
@ -222,9 +222,9 @@ static int faac_decode_init(AVCodecContext *avctx)
|
|||||||
do { static const char* n = "faacDec" #a; \
|
do { static const char* n = "faacDec" #a; \
|
||||||
if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
|
if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
|
||||||
for(;;) {
|
for(;;) {
|
||||||
#else /* !CONFIG_FAADBIN */
|
#else /* !CONFIG_LIBFAADBIN */
|
||||||
#define dfaac(a, b) s->faacDec ## a = faacDec ## a
|
#define dfaac(a, b) s->faacDec ## a = faacDec ## a
|
||||||
#endif /* CONFIG_FAADBIN */
|
#endif /* CONFIG_LIBFAADBIN */
|
||||||
|
|
||||||
// resolve all needed function calls
|
// resolve all needed function calls
|
||||||
dfaac(Open, (faacDecHandle FAADAPI (*)(void)));
|
dfaac(Open, (faacDecHandle FAADAPI (*)(void)));
|
||||||
@ -256,7 +256,7 @@ static int faac_decode_init(AVCodecContext *avctx)
|
|||||||
#endif
|
#endif
|
||||||
#undef dfacc
|
#undef dfacc
|
||||||
|
|
||||||
#ifdef CONFIG_FAADBIN
|
#ifdef CONFIG_LIBFAADBIN
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -1012,7 +1012,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
|
|||||||
st->codec->width= 0; /* let decoder init width/height */
|
st->codec->width= 0; /* let decoder init width/height */
|
||||||
st->codec->height= 0;
|
st->codec->height= 0;
|
||||||
break;
|
break;
|
||||||
#ifdef CONFIG_FAAD
|
#ifdef CONFIG_LIBFAAD
|
||||||
case CODEC_ID_AAC:
|
case CODEC_ID_AAC:
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_VORBIS_DECODER
|
#ifdef CONFIG_VORBIS_DECODER
|
||||||
|
Loading…
Reference in New Issue
Block a user