diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-23 20:58:31 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-23 20:58:31 +0000 |
commit | d771bcae33d7503796235d2199186a821582cd09 (patch) | |
tree | 6c6e9ac97e768ea0f61212663f51d12c888d0793 /configure | |
parent | 980fc7b83458fe6bbd58910813ba7ad3faf6cf76 (diff) | |
download | ffmpeg-d771bcae33d7503796235d2199186a821582cd09.tar.gz |
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
Originally committed as revision 9 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -74,3 +74,19 @@ if [ "$gprof" = "yes" ] ; then echo "TARGET_GPROF=yes" >> config.mak echo "#define HAVE_GPROF 1" >> config.h fi + +# if you do not want to use encoders, disable that. +echo "#define CONFIG_ENCODERS 1" >> config.h +echo "CONFIG_ENCODERS=yes" >> config.mak + +# if you do not want to use decoders, disable that. +echo "#define CONFIG_DECODERS 1" >> config.h +echo "CONFIG_DECODERS=yes" >> config.mak + +# special AC3 and MPGLIB enabling stuff in case you already have it +# without libavcodec. +echo "#define CONFIG_AC3 1" >> config.h +echo "CONFIG_AC3=yes" >> config.mak + +echo "#define CONFIG_MPGLIB 1" >> config.h +echo "CONFIG_MPGLIB=yes" >> config.mak |