diff options
author | Anuradha Suraparaju <anuradha@rd.bbc.co.uk> | 2008-05-03 13:59:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-03 13:59:45 +0000 |
commit | f7cd9eed5dd26335a16baae68075e944b61f1c7b (patch) | |
tree | a76c05e53bdd47d643be0eb0b1ccfce17798ce18 /configure | |
parent | 34499963e3eb62d465e48ba869cb687763b522e4 (diff) | |
download | ffmpeg-f7cd9eed5dd26335a16baae68075e944b61f1c7b.tar.gz |
Add Dirac support through libschroedinger.
patch by Anuradha Suraparaju, anuradha rd.bbc.co uk
Originally committed as revision 13046 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -98,6 +98,7 @@ show_help(){ echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [default=no]" echo " --enable-libnut enable NUT (de)muxing via libnut," echo " native demuxer exists [default=no]" + echo " --enable-libschroedinger enable Dirac support via libschroedinger [default=no]" echo " --enable-libtheora enable Theora encoding via libtheora [default=no]" echo " --enable-libvorbis enable Vorbis encoding via libvorbis," echo " native implementation exists [default=no]" @@ -649,6 +650,7 @@ CONFIG_LIST=" libgsm libmp3lame libnut + libschroedinger libtheora libvorbis libx264 @@ -834,6 +836,8 @@ libgsm_encoder_deps="libgsm" libgsm_ms_decoder_deps="libgsm" libgsm_ms_encoder_deps="libgsm" libmp3lame_encoder_deps="libmp3lame" +libschroedinger_decoder_deps="libschroedinger" +libschroedinger_encoder_deps="libschroedinger" libtheora_encoder_deps="libtheora" libvorbis_encoder_deps="libvorbis" libx264_encoder_deps="libx264" @@ -1637,6 +1641,8 @@ enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad enabled libgsm && require libgsm gsm.h gsm_create -lgsm enabled libmp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm enabled libnut && require libnut libnut.h nut_demuxer_init -lnut +enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) \ + && require libschroedinger schroedinger/schro.h schro_init -lschroedinger-1.0 -lpthread -loil-0.3 -lm -lrt enabled libtheora && require libtheora theora/theora.h theora_info_init -ltheora -logg enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg enabled libx264 && require x264 x264.h x264_encoder_open -lx264 -lm @@ -1923,6 +1929,7 @@ echo "libfaad dlopened ${libfaadbin-no}" echo "libgsm enabled ${libgsm-no}" echo "libmp3lame enabled ${libmp3lame-no}" echo "libnut enabled ${libnut-no}" +echo "libschroedinger enabled ${libschroedinger-no}" echo "libtheora enabled ${libtheora-no}" echo "libvorbis enabled ${libvorbis-no}" echo "x264 enabled ${libx264-no}" |