[Ffmpeg-cvslog] CVS: ffmpeg configure,1.200,1.201
Diego Biurrun CVS
diego
Fri Sep 23 02:25:43 CEST 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec bitstream.h,1.155,1.156
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat allformats.c, 1.49, 1.50 asf-enc.c, 1.72, 1.73 asf.c, 1.84, 1.85 au.c, 1.21, 1.22 avienc.c, 1.111, 1.112 avio.c, 1.14, 1.15 aviobuf.c, 1.30, 1.31 ffm.c, 1.44, 1.45 jpeg.c, 1.14, 1.15 mmf.c, 1.3, 1.4 mp3.c, 1.10, 1.11 mpeg.c, 1.88, 1.89 mpegts.c, 1.32, 1.33 mpjpeg.c, 1.6, 1.7 nut.c, 1.55, 1.56 ogg.c, 1.25, 1.26 ogg2.c, 1.9, 1.10 raw.c, 1.57, 1.58 rm.c, 1.48, 1.49 sgi.c, 1.4, 1.5 swf.c, 1.28, 1.29 wav.c, 1.54, 1.55 yuv4mpeg.c, 1.25, 1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv19763
Modified Files:
configure
Log Message:
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
in libavformat to allow building (de)coders and (de)muxers independently at
some point + support for this option in configure.
Index: configure
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/configure,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -d -r1.200 -r1.201
--- configure 21 Aug 2005 20:33:00 -0000 1.200
+++ configure 23 Sep 2005 00:25:41 -0000 1.201
@@ -78,6 +78,8 @@
echo " --disable-codec=codec disables codec"
echo " --disable-encoders disables all encoders"
echo " --disable-decoders disables all decoders"
+echo " --disable-muxers disables all muxers"
+echo " --disable-demuxers disables all demuxers"
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
@@ -218,6 +220,8 @@
pthreads="no"
gpl="no"
memalignhack="no"
+muxers="yes"
+demuxers="yes"
# OS specific
targetos=`uname -s`
@@ -533,6 +537,10 @@
;;
--disable-decoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*decoder//g'`"
;;
+ --disable-muxers) muxers="no"
+ ;;
+ --disable-demuxers) demuxers="no"
+ ;;
esac
done
@@ -1399,6 +1407,18 @@
echo "#define CONFIG_DECODERS 1" >> $TMPH
echo "CONFIG_DECODERS=yes" >> config.mak
+# muxers
+if test "$muxers" = "yes" ; then
+ echo "#define CONFIG_MUXERS 1" >> $TMPH
+ echo "CONFIG_MUXERS=yes" >> config.mak
+fi
+
+# demuxers
+if test "$demuxers" = "yes" ; then
+ echo "#define CONFIG_DEMUXERS 1" >> $TMPH
+ echo "CONFIG_DEMUXERS=yes" >> config.mak
+fi
+
# AC3
if test "$a52" = "yes" ; then
echo "#define CONFIG_AC3 1" >> $TMPH
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec bitstream.h,1.155,1.156
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat allformats.c, 1.49, 1.50 asf-enc.c, 1.72, 1.73 asf.c, 1.84, 1.85 au.c, 1.21, 1.22 avienc.c, 1.111, 1.112 avio.c, 1.14, 1.15 aviobuf.c, 1.30, 1.31 ffm.c, 1.44, 1.45 jpeg.c, 1.14, 1.15 mmf.c, 1.3, 1.4 mp3.c, 1.10, 1.11 mpeg.c, 1.88, 1.89 mpegts.c, 1.32, 1.33 mpjpeg.c, 1.6, 1.7 nut.c, 1.55, 1.56 ogg.c, 1.25, 1.26 ogg2.c, 1.9, 1.10 raw.c, 1.57, 1.58 rm.c, 1.48, 1.49 sgi.c, 1.4, 1.5 swf.c, 1.28, 1.29 wav.c, 1.54, 1.55 yuv4mpeg.c, 1.25, 1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list