mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
variable renaming: mp3lame --> libmp3lame
Originally committed as revision 7417 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2eed5a461f
commit
6ebe07fbb5
10
configure
vendored
10
configure
vendored
@ -430,11 +430,11 @@ CONFIG_LIST='
|
|||||||
libfaad
|
libfaad
|
||||||
libfaadbin
|
libfaadbin
|
||||||
libgsm
|
libgsm
|
||||||
|
libmp3lame
|
||||||
libnut
|
libnut
|
||||||
libogg
|
libogg
|
||||||
libvorbis
|
libvorbis
|
||||||
memalign_hack
|
memalign_hack
|
||||||
mp3lame
|
|
||||||
mpegaudio_hp
|
mpegaudio_hp
|
||||||
network
|
network
|
||||||
pp
|
pp
|
||||||
@ -596,8 +596,8 @@ libfaac="no"
|
|||||||
libfaad="no"
|
libfaad="no"
|
||||||
libfaadbin="no"
|
libfaadbin="no"
|
||||||
libgsm="no"
|
libgsm="no"
|
||||||
mp3lame="no"
|
|
||||||
libdts="no"
|
libdts="no"
|
||||||
|
libmp3lame="no"
|
||||||
libnut="no"
|
libnut="no"
|
||||||
libogg="no"
|
libogg="no"
|
||||||
libvorbis="no"
|
libvorbis="no"
|
||||||
@ -944,7 +944,7 @@ for opt do
|
|||||||
;;
|
;;
|
||||||
--enable-libgsm) libgsm="yes"
|
--enable-libgsm) libgsm="yes"
|
||||||
;;
|
;;
|
||||||
--enable-mp3lame) mp3lame="yes"
|
--enable-mp3lame) libmp3lame="yes"
|
||||||
;;
|
;;
|
||||||
--enable-libnut) libnut="yes"
|
--enable-libnut) libnut="yes"
|
||||||
;;
|
;;
|
||||||
@ -1465,7 +1465,7 @@ fi
|
|||||||
# these are off by default, so fail if requested and not available
|
# these are off by default, so fail if requested and not available
|
||||||
enabled libdts && require libdts dts.h dts_init -ldts -lm
|
enabled libdts && require libdts dts.h dts_init -ldts -lm
|
||||||
enabled libgsm && require libgsm gsm.h gsm_create -lgsm
|
enabled libgsm && require libgsm gsm.h gsm_create -lgsm
|
||||||
enabled mp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm
|
enabled libmp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm
|
||||||
enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg
|
enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg
|
||||||
enabled libogg && require libogg ogg/ogg.h ogg_sync_init -logg
|
enabled libogg && require libogg ogg/ogg.h ogg_sync_init -logg
|
||||||
enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
|
enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
|
||||||
@ -1799,7 +1799,7 @@ echo "libfaac enabled $libfaac"
|
|||||||
echo "libfaad enabled $libfaad"
|
echo "libfaad enabled $libfaad"
|
||||||
echo "faadbin enabled $libfaadbin"
|
echo "faadbin enabled $libfaadbin"
|
||||||
echo "libgsm enabled $libgsm"
|
echo "libgsm enabled $libgsm"
|
||||||
echo "libmp3lame enabled $mp3lame"
|
echo "libmp3lame enabled $libmp3lame"
|
||||||
echo "libnut enabled $libnut"
|
echo "libnut enabled $libnut"
|
||||||
echo "libogg enabled $libogg"
|
echo "libogg enabled $libogg"
|
||||||
echo "libvorbis enabled $libvorbis"
|
echo "libvorbis enabled $libvorbis"
|
||||||
|
@ -247,7 +247,7 @@ OBJS-$(CONFIG_LIBFAAD) += faad.o
|
|||||||
OBJS-$(CONFIG_LIBFAAC) += 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_LIBMP3LAME) += mp3lameaudio.o
|
||||||
OBJS-$(CONFIG_LIBVORBIS) += oggvorbis.o
|
OBJS-$(CONFIG_LIBVORBIS) += oggvorbis.o
|
||||||
OBJS-$(CONFIG_LIBGSM) += libgsm.o
|
OBJS-$(CONFIG_LIBGSM) += libgsm.o
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ void avcodec_register_all(void)
|
|||||||
REGISTER_ENCDEC (MP2, mp2);
|
REGISTER_ENCDEC (MP2, mp2);
|
||||||
REGISTER_DECODER(MP3, mp3);
|
REGISTER_DECODER(MP3, mp3);
|
||||||
REGISTER_DECODER(MP3ADU, mp3adu);
|
REGISTER_DECODER(MP3ADU, mp3adu);
|
||||||
#ifdef CONFIG_MP3LAME
|
#ifdef CONFIG_LIBMP3LAME
|
||||||
REGISTER_ENCODER(MP3LAME, mp3lame);
|
REGISTER_ENCODER(MP3LAME, mp3lame);
|
||||||
#endif
|
#endif
|
||||||
REGISTER_DECODER(MP3ON4, mp3on4);
|
REGISTER_DECODER(MP3ON4, mp3on4);
|
||||||
|
@ -832,7 +832,7 @@ AVOutputFormat asf_muxer = {
|
|||||||
"video/x-ms-asf",
|
"video/x-ms-asf",
|
||||||
"asf,wmv,wma",
|
"asf,wmv,wma",
|
||||||
sizeof(ASFContext),
|
sizeof(ASFContext),
|
||||||
#ifdef CONFIG_MP3LAME
|
#ifdef CONFIG_LIBMP3LAME
|
||||||
CODEC_ID_MP3,
|
CODEC_ID_MP3,
|
||||||
#else
|
#else
|
||||||
CODEC_ID_MP2,
|
CODEC_ID_MP2,
|
||||||
@ -852,7 +852,7 @@ AVOutputFormat asf_stream_muxer = {
|
|||||||
"video/x-ms-asf",
|
"video/x-ms-asf",
|
||||||
"asf,wmv,wma",
|
"asf,wmv,wma",
|
||||||
sizeof(ASFContext),
|
sizeof(ASFContext),
|
||||||
#ifdef CONFIG_MP3LAME
|
#ifdef CONFIG_LIBMP3LAME
|
||||||
CODEC_ID_MP3,
|
CODEC_ID_MP3,
|
||||||
#else
|
#else
|
||||||
CODEC_ID_MP2,
|
CODEC_ID_MP2,
|
||||||
|
@ -323,11 +323,11 @@ AVOutputFormat flv_muxer = {
|
|||||||
"video/x-flv",
|
"video/x-flv",
|
||||||
"flv",
|
"flv",
|
||||||
sizeof(FLVContext),
|
sizeof(FLVContext),
|
||||||
#ifdef CONFIG_MP3LAME
|
#ifdef CONFIG_LIBMP3LAME
|
||||||
CODEC_ID_MP3,
|
CODEC_ID_MP3,
|
||||||
#else // CONFIG_MP3LAME
|
#else // CONFIG_LIBMP3LAME
|
||||||
CODEC_ID_NONE,
|
CODEC_ID_NONE,
|
||||||
#endif // CONFIG_MP3LAME
|
#endif // CONFIG_LIBMP3LAME
|
||||||
CODEC_ID_FLV1,
|
CODEC_ID_FLV1,
|
||||||
flv_write_header,
|
flv_write_header,
|
||||||
flv_write_packet,
|
flv_write_packet,
|
||||||
|
@ -401,7 +401,7 @@ AVOutputFormat mp2_muxer = {
|
|||||||
"mp2",
|
"mp2",
|
||||||
"MPEG audio layer 2",
|
"MPEG audio layer 2",
|
||||||
"audio/x-mpeg",
|
"audio/x-mpeg",
|
||||||
#ifdef CONFIG_MP3LAME
|
#ifdef CONFIG_LIBMP3LAME
|
||||||
"mp2,m2a",
|
"mp2,m2a",
|
||||||
#else
|
#else
|
||||||
"mp2,mp3,m2a",
|
"mp2,mp3,m2a",
|
||||||
|
@ -1443,7 +1443,7 @@ AVOutputFormat nut_muxer = {
|
|||||||
sizeof(NUTContext),
|
sizeof(NUTContext),
|
||||||
#ifdef CONFIG_LIBVORBIS
|
#ifdef CONFIG_LIBVORBIS
|
||||||
CODEC_ID_VORBIS,
|
CODEC_ID_VORBIS,
|
||||||
#elif defined(CONFIG_MP3LAME)
|
#elif defined(CONFIG_LIBMP3LAME)
|
||||||
CODEC_ID_MP3,
|
CODEC_ID_MP3,
|
||||||
#else
|
#else
|
||||||
CODEC_ID_MP2, /* AC3 needs liba52 decoder */
|
CODEC_ID_MP2, /* AC3 needs liba52 decoder */
|
||||||
|
Loading…
Reference in New Issue
Block a user