comparison configure @ 18404:e3379df74bcd

Unconditionally compile the Matroska demuxer.
author diego
date Mon, 08 May 2006 21:41:15 +0000
parents 8a8db87a884b
children c459df5e8afd
comparison
equal deleted inserted replaced
18403:9bbc941f069e 18404:e3379df74bcd
277 --enable-tremor-low build with lower accuracy internal tremor [disabled] 277 --enable-tremor-low build with lower accuracy internal tremor [disabled]
278 --enable-external-tremor build with external tremor [disabled] 278 --enable-external-tremor build with external tremor [disabled]
279 --disable-vorbis disable OggVorbis support entirely [autodetect] 279 --disable-vorbis disable OggVorbis support entirely [autodetect]
280 --disable-speex disable Speex support [autodetect] 280 --disable-speex disable Speex support [autodetect]
281 --enable-theora build with OggTheora support [autodetect] 281 --enable-theora build with OggTheora support [autodetect]
282 --disable-internal-matroska disable internal Matroska support [enabled]
283 --enable-external-faad build with external FAAD2 (AAC) support [autodetect] 282 --enable-external-faad build with external FAAD2 (AAC) support [autodetect]
284 --disable-internal-faad disable internal FAAD2 (AAC) support [autodetect] 283 --disable-internal-faad disable internal FAAD2 (AAC) support [autodetect]
285 --disable-faac disable support for FAAC (AAC encoder) [autodetect] 284 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
286 --disable-ladspa disable LADSPA plugin support [autodetect] 285 --disable-ladspa disable LADSPA plugin support [autodetect]
287 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect] 286 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
1576 _theora=auto 1575 _theora=auto
1577 _mp3lib=yes 1576 _mp3lib=yes
1578 _liba52=yes 1577 _liba52=yes
1579 _libdts=auto 1578 _libdts=auto
1580 _libmpeg2=yes 1579 _libmpeg2=yes
1581 _matroska_internal=yes
1582 _tremor=no 1580 _tremor=no
1583 _faad_internal=auto 1581 _faad_internal=auto
1584 _faad_external=auto 1582 _faad_external=auto
1585 _faac=auto 1583 _faac=auto
1586 _ladspa=auto 1584 _ladspa=auto
1791 --disable-libdts) _libdts=no ;; 1789 --disable-libdts) _libdts=no ;;
1792 --enable-libmpeg2) _libmpeg2=yes ;; 1790 --enable-libmpeg2) _libmpeg2=yes ;;
1793 --disable-libmpeg2) _libmpeg2=no ;; 1791 --disable-libmpeg2) _libmpeg2=no ;;
1794 --enable-musepack) _musepack=yes ;; 1792 --enable-musepack) _musepack=yes ;;
1795 --disable-musepack) _musepack=no ;; 1793 --disable-musepack) _musepack=no ;;
1796 --enable-internal-matroska) _matroska_internal=yes ;;
1797 --disable-internal-matroska) _matroska_internal=no ;;
1798 --enable-internal-faad) _faad_internal=yes _faad_external=no ;; 1794 --enable-internal-faad) _faad_internal=yes _faad_external=no ;;
1799 --disable-internal-faad) _faad_internal=no ;; 1795 --disable-internal-faad) _faad_internal=no ;;
1800 --enable-external-faad) _faad_external=yes _faad_internal=no ;; 1796 --enable-external-faad) _faad_external=yes _faad_internal=no ;;
1801 --disable-external-faad) _faad_external=no ;; 1797 --disable-external-faad) _faad_external=no ;;
1802 --enable-faac) _faac=yes ;; 1798 --enable-faac) _faac=yes ;;
5713 _nocodecmodules="musepack $_nocodecmodules" 5709 _nocodecmodules="musepack $_nocodecmodules"
5714 fi 5710 fi
5715 echores "$_musepack" 5711 echores "$_musepack"
5716 5712
5717 5713
5718 echocheck "Matroska support"
5719 if test "$_matroska_internal" = yes ; then
5720 _inputmodules="matroska $_inputmodules"
5721 _def_matroska='#define HAVE_MATROSKA 1'
5722 else
5723 _noinputmodules="matroska $_noinputmodules"
5724 _def_matroska='#undef HAVE_MATROSKA'
5725 fi
5726 echores "$_matroska_internal"
5727
5728 echocheck "FAAC (AAC encoder) support" 5714 echocheck "FAAC (AAC encoder) support"
5729 if test "$_faac" = auto ; then 5715 if test "$_faac" = auto ; then
5730 cat > $TMPC <<EOF 5716 cat > $TMPC <<EOF
5731 #include <inttypes.h> 5717 #include <inttypes.h>
5732 #include <faac.h> 5718 #include <faac.h>
7324 EXTERNAL_VIDIX = $_vidix_external 7310 EXTERNAL_VIDIX = $_vidix_external
7325 EXTERNAL_VIDIX_LIB = $_ld_vidix_external 7311 EXTERNAL_VIDIX_LIB = $_ld_vidix_external
7326 CONFIG_PP = yes 7312 CONFIG_PP = yes
7327 CONFIG_MP3LAME = $_mp3lame 7313 CONFIG_MP3LAME = $_mp3lame
7328 LIBMENU = $_menu 7314 LIBMENU = $_menu
7329 MATROSKA = $_matroska_internal
7330 7315
7331 OPENDIVX = $_opendivx 7316 OPENDIVX = $_opendivx
7332 7317
7333 MP3LIB = $_mp3lib 7318 MP3LIB = $_mp3lib
7334 LIBA52 = $_liba52 7319 LIBA52 = $_liba52
8067 $_def_musepack 8052 $_def_musepack
8068 8053
8069 /* enable OggTheora support */ 8054 /* enable OggTheora support */
8070 $_def_theora 8055 $_def_theora
8071 8056
8072 /* enable Matroska support */
8073 $_def_matroska
8074
8075 /* enable FAAD (AAC) support */ 8057 /* enable FAAD (AAC) support */
8076 $_def_faad 8058 $_def_faad
8077 $_def_faad_internal 8059 $_def_faad_internal
8078 8060
8079 /* enable FAAC (AAC encoder) support */ 8061 /* enable FAAC (AAC encoder) support */