3 # FFmpeg configure script
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
10 # Prevent locale nonsense from breaking basic text processing.
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
18 echo "Trying shell $1"
19 type "$1" > /dev
/null
2>&1 && exec "$@"
23 (: ${foo%%bar}) 2> /dev
/null
26 (: ${foo?}) 2> /dev
/null
29 if test "$E1" != 0 ||
test "$E2" = 0; then
30 echo "Broken shell detected. Trying alternatives."
32 if test "0$FF_CONF_EXEC" -lt
1; then
34 try_exec bash
"$0" "$@"
36 if test "0$FF_CONF_EXEC" -lt
2; then
38 try_exec ksh
"$0" "$@"
40 if test "0$FF_CONF_EXEC" -lt
3; then
42 try_exec
/usr
/xpg4
/bin
/sh
"$0" "$@"
44 echo "No compatible shell script interpreter found."
45 echo "This configure script requires a POSIX-compatible shell"
46 echo "such as bash or ksh."
47 echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
48 echo "Instead, install a working POSIX-compatible shell."
49 echo "Disabling this configure test will create a broken FFmpeg."
50 if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51 echo "This bash version ($BASH_VERSION) is broken on your platform."
52 echo "Upgrade to a later version if available."
58 echo "Usage: configure [options]"
59 echo "Options: [defaults in brackets after descriptions]"
61 echo "Standard options:"
62 echo " --help print this message"
63 echo " --logfile=FILE log tests and output to FILE [config.err]"
64 echo " --disable-logging do not log configure debug information"
65 echo " --prefix=PREFIX install in PREFIX [$prefix]"
66 echo " --bindir=DIR install binaries in DIR [PREFIX/bin]"
67 echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
68 echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]"
69 echo " --incdir=DIR install includes in DIR [PREFIX/include]"
70 echo " --mandir=DIR install man page in DIR [PREFIX/share/man]"
71 echo " --enable-static build static libraries [default=yes]"
72 echo " --disable-static do not build static libraries [default=no]"
73 echo " --enable-shared build shared libraries [default=no]"
74 echo " --disable-shared do not build shared libraries [default=yes]"
75 echo " --enable-gpl allow use of GPL code, the resulting libav*"
76 echo " and ffmpeg will be under GPL [default=no]"
77 echo " --enable-nonfree allow use of nonfree code, the resulting libav*"
78 echo " and ffmpeg will be unredistributable [default=no]"
79 echo " --enable-postproc enable GPLed postprocessing support [default=no]"
80 echo " --enable-swscale software scaler support [default=no]"
81 echo " --enable-avfilter video filter support (replaces vhook) [default=no]"
82 echo " --enable-avfilter-lavf video filters dependant on avformat [default=no]"
83 echo " --enable-beosthreads use BeOS threads [default=no]"
84 echo " --enable-os2threads use OS/2 threads [default=no]"
85 echo " --enable-pthreads use pthreads [default=no]"
86 echo " --enable-w32threads use Win32 threads [default=no]"
87 echo " --enable-x11grab enable X11 grabbing [default=no]"
89 echo "External library support:"
90 echo " --enable-mlib use Sun medialib [default=no]"
91 echo " --enable-avisynth allow reading AVISynth script files [default=no]"
92 echo " --enable-libamr-nb enable libamr-nb floating point audio codec"
93 echo " --enable-libamr-wb enable libamr-wb floating point audio codec"
94 echo " --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394"
95 echo " and libraw1394 [default=no]"
96 echo " --enable-libdirac enable Dirac support via libdirac [default=no]"
97 echo " --enable-libfaac enable FAAC support via libfaac [default=no]"
98 echo " --enable-libfaad enable FAAD support via libfaad [default=no]"
99 echo " --enable-libfaadbin open libfaad.so.0 at runtime [default=no]"
100 echo " --enable-libgsm enable GSM support via libgsm [default=no]"
101 echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [default=no]"
102 echo " --enable-libnut enable NUT (de)muxing via libnut,"
103 echo " native demuxer exists [default=no]"
104 echo " --enable-libschroedinger enable Dirac support via libschroedinger [default=no]"
105 echo " --enable-libtheora enable Theora encoding via libtheora [default=no]"
106 echo " --enable-libvorbis enable Vorbis encoding via libvorbis,"
107 echo " native implementation exists [default=no]"
108 echo " --enable-libx264 enable H.264 encoding via x264 [default=no]"
109 echo " --enable-libxvid enable Xvid encoding via xvidcore,"
110 echo " native MPEG-4/Xvid encoder exists [default=no]"
112 echo "Advanced options (experts only):"
113 echo " --source-path=PATH path to source code [$source_path]"
114 echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
115 echo " --enable-cross-compile assume a cross-compiler is used"
116 echo " --target-os=OS compiler targets OS [$target_os]"
117 echo " --cc=CC use C compiler CC [$cc]"
118 echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
119 echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
120 echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
121 echo " --extra-version=STRING version string suffix []"
122 echo " --build-suffix=SUFFIX suffix for application specific build []"
123 echo " --arch=ARCH select architecture [$arch]"
124 echo " --cpu=CPU selects the minimum cpu required (affects"
125 echo " instruction selection, may crash on older CPUs)"
126 echo " --enable-powerpc-perf enable performance report on PPC"
127 echo " (requires enabling PMC)"
128 echo " --disable-mmx disable MMX usage"
129 echo " --disable-mmx2 disable MMX2 usage"
130 echo " --disable-ssse3 disable SSSE3 usage"
131 echo " --disable-armv5te disable armv5te usage"
132 echo " --disable-armv6 disable armv6 usage"
133 echo " --disable-armvfp disable ARM VFP usage"
134 echo " --disable-iwmmxt disable iwmmxt usage"
135 echo " --disable-altivec disable AltiVec usage"
136 echo " --disable-network disable network support [default=no]"
137 echo " --disable-ipv6 disable ipv6 support [default=no]"
138 echo " --disable-zlib disable zlib [default=no]"
139 echo " --disable-bzlib disable bzlib [default=no]"
140 echo " --disable-vhook disable video hooking support"
141 echo " --disable-mpegaudio-hp faster (but less accurate)"
142 echo " MPEG audio decoding [default=no]"
143 echo " --enable-gray enable full grayscale support (slower color)"
144 echo " --disable-ffmpeg disable ffmpeg build"
145 echo " --disable-ffserver disable ffserver build"
146 echo " --disable-ffplay disable ffplay build"
147 echo " --enable-small optimize for size instead of speed"
148 echo " --enable-hardcoded-tables use hardcoded tables instead of runtime generation"
149 echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
150 echo " --disable-encoder=NAME disables encoder NAME"
151 echo " --enable-encoder=NAME enables encoder NAME"
152 echo " --disable-decoder=NAME disables decoder NAME"
153 echo " --enable-decoder=NAME enables decoder NAME"
154 echo " --disable-encoders disables all encoders"
155 echo " --disable-decoders disables all decoders"
156 echo " --disable-muxer=NAME disables muxer NAME"
157 echo " --enable-muxer=NAME enables muxer NAME"
158 echo " --disable-muxers disables all muxers"
159 echo " --disable-demuxer=NAME disables demuxer NAME"
160 echo " --enable-demuxer=NAME enables demuxer NAME"
161 echo " --disable-demuxers disables all demuxers"
162 echo " --enable-parser=NAME enables parser NAME"
163 echo " --disable-parser=NAME disables parser NAME"
164 echo " --disable-parsers disables all parsers"
165 echo " --enable-bsf=NAME enables bitstream filter NAME"
166 echo " --disable-bsf=NAME disables bitstream filter NAME"
167 echo " --disable-bsfs disables all bitstream filters"
168 echo " --enable-protocol=NAME enables protocol NAME"
169 echo " --disable-protocol=NAME disables protocol NAME"
170 echo " --disable-protocols disables all protocols"
171 echo " --disable-devices disables all devices"
172 echo " --enable-filter=NAME enables filter NAME"
173 echo " --disable-filter=NAME disables filter NAME"
174 echo " --disable-filters disables all filters"
175 echo " --list-decoders show all available decoders"
176 echo " --list-encoders show all available encoders"
177 echo " --list-muxers show all available muxers"
178 echo " --list-demuxers show all available demuxers"
179 echo " --list-parsers show all available parsers"
180 echo " --list-protocols show all available protocols"
181 echo " --list-bsfs show all available bitstream filters"
182 echo " --list-indevs show all available input devices"
183 echo " --list-outdevs show all available output devices"
184 echo " --list-filters show all available filters"
186 echo "Developer options (useful when working on FFmpeg itself):"
187 echo " --disable-debug disable debugging symbols"
188 echo " --enable-debug=LEVEL set the debug level [$debuglevel]"
189 echo " --enable-gprof enable profiling with gprof [$gprof]"
190 echo " --disable-optimizations disable compiler optimizations"
191 echo " --enable-extra-warnings enable more compiler warnings"
192 echo " --disable-stripping disable stripping of executables and shared libraries"
194 echo "NOTE: Object files are built at the place where configure is launched."
199 echo "$@" >> $logfile
204 pr -n
-t
$1 >> $logfile
216 If you think configure made a mistake, make sure you are using the latest
217 version from SVN. If the latest version fails, report the problem to the
218 ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
220 if disabled logging
; then
222 Rerun configure with logging enabled (do not use --disable-logging), and
223 include the log this produces with your report.
227 Include the log file "$logfile" produced by configure as this will help
231 rm -f
$TMPC $TMPE $TMPH $TMPO $TMPS $TMPSH
235 # Avoid locale weirdness, besides we really just want to translate ASCII.
237 echo "$@" |
tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
241 echo "$@" |
tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
254 eval level
=\
${${var}_level
:=0}
255 eval ${var}_
${level}="\$$var"
256 eval ${var}_level
=$
(($level+1))
262 eval level
=\
${${var}_level
:-0}
263 test $level = 0 && continue
264 eval level
=$
(($level-1))
265 eval $var="\${${var}_${level}}"
266 eval ${var}_level
=$level
267 eval unset ${var}_
${level}
280 test "${1#!}" = "$1" && op
== || op
=!=
281 eval test "x\$${1#!}" $op "xyes"
285 test "${1#!}" = "$1" && op
== || op
=!=
286 eval test "x\$${1#!}" $op "xno"
291 enabled
$opt ||
return 1
297 disabled
$opt ||
return 1
303 enabled
$opt && return 0
309 disabled
$opt && return 0
315 eval test -z
"\$$opt" && eval $opt=\$
${opt}_default
323 [ $var = $value ] && return 0
331 enabled
${cfg}_checking
&& die
"Circular dependency for $cfg."
332 disabled
${cfg}_checking
&& continue
333 enable ${cfg}_checking
335 eval dep_all
="\$${cfg}_deps"
336 eval dep_any
="\$${cfg}_deps_any"
338 pushvar cfg dep_all dep_any
339 check_deps
$dep_all $dep_any
340 popvar cfg dep_all dep_any
342 enabled_all
$dep_all || disable
$cfg
343 enabled_any
$dep_any || disable
$cfg
345 if enabled
$cfg; then
346 eval dep_extralibs
="\$${cfg}_extralibs"
347 test -n
"$dep_extralibs" && add_extralibs
$dep_extralibs
350 disable
${cfg}_checking
360 ucname
="`toupper $cfg`"
361 if enabled
$cfg; then
362 echo "#define ${pfx}${ucname} 1" >> $header
363 echo "#define ENABLE_${ucname} 1" >> $header
364 echo "${pfx}${ucname}=yes" >> $makefile
366 echo "#define ENABLE_${ucname} 0" >> $header
372 (: ${SAVE_CFLAGS?}) 2> /dev
/null
376 flags_saved
&& return
377 SAVE_CFLAGS
="$CFLAGS"
378 SAVE_LDFLAGS
="$LDFLAGS"
379 SAVE_extralibs
="$extralibs"
383 flags_saved ||
return
384 CFLAGS
="$SAVE_CFLAGS"
385 LDFLAGS
="$SAVE_LDFLAGS"
386 extralibs
="$SAVE_extralibs"
399 LDFLAGS
="$LDFLAGS $*"
404 extralibs
="$extralibs $*"
410 flags_saved
&& eval "SAVE_$var=\"\$SAVE_$var $*\""
411 eval "$var=\"\$$var $*\""
423 append extralibs
"$@"
428 "$@" >> $logfile 2>&1
435 check_cmd
$cc $CFLAGS "$@" -c
-o
$TMPO $TMPC
442 check_cmd
$cc $CFLAGS "$@" -E
-o
$TMPO $TMPC
450 check_cc
"$@" <<EOF && enable $name || disable $name
451 int foo(void){ __asm__ volatile($asm); }
460 check_cmd
$yasmexe $YASMFLAGS "$@" -o
$TMPO $TMPS
469 test "${f}" = "${f#-l}" && flags
="$flags $f" || libs
="$libs $f"
471 check_cmd
$cc $LDFLAGS $flags -o
$TMPE $TMPO $extralibs $libs
475 log check_cflags
"$@"
476 check_cc
"$@" <<EOF && add_cflags "$@"
482 log check_ldflags
"$@"
483 check_ld
"$@" <<EOF && add_ldflags "$@"
484 int main(void){ return 0; }
489 log check_header
"$@"
492 var
=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
494 check_cpp
"$@" <<EOF && enable $var
505 check_ld
"$@" <<EOF && enable $func
507 int main(void){ $func(); }
511 check_func_headers
(){
512 log check_func_headers
"$@"
518 for hdr
in $headers; do
522 check_ld
"$@" <<EOF && enable $func
524 int main(int argc, char **argv){
531 check_cpp_condition
(){
532 log check_cpp_condition
"$@"
538 #error "unsatisfied condition: $condition"
549 check_header
$header && check_func
$func && add_extralibs
"$@"
561 check_func_headers
"$headers" $func && add_extralibs
"$@"
568 check_ld
"$@" && { enabled cross_compile ||
$TMPE >> $logfile 2>&1; }
574 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
575 # are safe but may not be available everywhere. Thus we use
576 # raise(SIGTERM) instead. The check is run in a subshell so we
577 # can redirect the "Terminated" message from the shell. SIGBUS
578 # is not defined by standard C so it is used conditionally.
580 (check_exec
"$@") >> $logfile 2>&1 <<EOF
582 static void sighandler(int sig){
586 signal(SIGILL, sighandler);
587 signal(SIGFPE, sighandler);
588 signal(SIGSEGV, sighandler);
590 signal(SIGBUS, sighandler);
604 for hdr
in $headers; do
608 check_cc
"$@" <<EOF && enable $type
619 check_lib
$header $func "$@" || die
"ERROR: $name not found"
627 check_lib2
"$headers" $func "$@" || die
"ERROR: $name not found"
637 check_cmd
${pkg}-config
--version
639 if test "$err" = 0; then
640 temp_cflags
`${pkg}-config --cflags`
641 temp_extralibs
`${pkg}-config --libs`
642 check_lib
"$@" $header $func && enable $cfg
650 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" ||
rm "$file.tmp"
653 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
654 # system-dependent things.
762 dev_bktr_ioctl_bt848_h
763 dev_bktr_ioctl_meteor_h
765 dev_video_meteor_ioctl_meteor_h
766 dev_video_bktr_ioctl_bt848_h
788 machine_ioctl_bt848_h
789 machine_ioctl_meteor_h
849 # code dependency declarations
851 # architecture extensions
852 altivec_deps
="powerpc"
853 armv5te_deps
="armv4l"
864 # decoders / encoders
865 ac3_decoder_deps
="gpl"
866 dxa_decoder_deps
="zlib"
867 eac3_decoder_deps
="gpl"
868 flashsv_decoder_deps
="zlib"
869 flashsv_encoder_deps
="zlib"
870 mlp_decoder_deps
="mlp_parser"
871 mpeg_xvmc_decoder_deps
="xvmc"
872 png_decoder_deps
="zlib"
873 png_encoder_deps
="zlib"
874 zmbv_decoder_deps
="zlib"
875 zmbv_encoder_deps
="zlib"
878 libamr_nb_decoder_deps
="libamr_nb"
879 libamr_nb_encoder_deps
="libamr_nb"
880 libamr_wb_decoder_deps
="libamr_wb"
881 libamr_wb_encoder_deps
="libamr_wb"
882 libdirac_decoder_deps
="libdirac !libschroedinger"
883 libdirac_encoder_deps
="libdirac"
884 libfaac_encoder_deps
="libfaac"
885 libfaad_decoder_deps
="libfaad"
886 libfaadbin_decoder_extralibs
='$ldl'
887 libgsm_decoder_deps
="libgsm"
888 libgsm_encoder_deps
="libgsm"
889 libgsm_ms_decoder_deps
="libgsm"
890 libgsm_ms_encoder_deps
="libgsm"
891 libmp3lame_encoder_deps
="libmp3lame"
892 libschroedinger_decoder_deps
="libschroedinger"
893 libschroedinger_encoder_deps
="libschroedinger"
894 libtheora_encoder_deps
="libtheora"
895 libvorbis_encoder_deps
="libvorbis"
896 libx264_encoder_deps
="libx264"
897 libxvid_encoder_deps
="libxvid"
898 mpeg4aac_decoder_deps
="libfaad"
901 ac3_demuxer_deps
="ac3_parser"
902 audio_beos_demuxer_deps
="audio_beos"
903 audio_beos_demuxer_extralibs
="-lmedia -lbe"
904 audio_beos_muxer_deps
="audio_beos"
905 audio_beos_muxer_extralibs
="-lmedia -lbe"
906 avisynth_demuxer_deps
="avisynth"
907 bktr_demuxer_deps_any
="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
908 dirac_demuxer_deps
="dirac_parser"
909 dv1394_demuxer_deps
="dv1394 dv_demuxer"
910 libdc1394_demuxer_deps
="libdc1394"
911 libnut_demuxer_deps
="libnut"
912 libnut_muxer_deps
="libnut"
913 mp3_demuxer_deps
="mpegaudio_parser"
914 oss_demuxer_deps_any
="soundcard_h sys_soundcard_h"
915 oss_muxer_deps_any
="soundcard_h sys_soundcard_h"
916 redir_demuxer_deps
="network"
917 rtp_muxer_deps
="network rtp_protocol"
918 rtsp_demuxer_deps
="sdp_demuxer"
919 sdp_demuxer_deps
="rtp_protocol mpegts_demuxer"
920 v4l_demuxer_deps
="linux_videodev_h"
921 v4l2_demuxer_deps_any
="linux_videodev2_h sys_videoio_h"
922 vfwcap_demuxer_deps
="capCreateCaptureWindow"
923 vfwcap_demuxer_extralibs
="-lvfw32"
924 x11_grab_device_demuxer_deps
="x11grab XShmCreateImage"
925 x11_grab_device_demuxer_extralibs
="-lX11 -lXext"
928 http_protocol_deps
="network"
929 rtp_protocol_deps
="udp_protocol"
930 tcp_protocol_deps
="network"
931 udp_protocol_deps
="network"
934 movie_filter_deps
="avfilter_lavf"
938 ffserver_deps
="ffm_muxer rtp_protocol rtsp_demuxer"
939 ffserver_extralibs
='$ldl'
940 vhook_extralibs
='$ldl'
948 prefix_default
="/usr/local"
949 bindir_default
='${prefix}/bin'
950 incdir_default
='${prefix}/include'
951 libdir_default
='${prefix}/lib'
952 mandir_default
='${prefix}/share/man'
953 shlibdir_default
="$libdir_default"
962 asmalign_pot
="unknown"
971 target_os
=$
(tolower $
(uname
-s
))
977 # configurable options
992 add_cflags
-D_ISOC99_SOURCE
-D_POSIX_C_SOURCE
=200112
993 SHFLAGS
='-shared -Wl,-soname,$$(@F)'
994 VHOOKSHFLAGS
='$(SHFLAGS)'
995 FFSERVERLDFLAGS
=-Wl
,-E
998 FULLNAME
='$(NAME)$(BUILDSUF)'
999 LIBNAME
='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
1002 SLIBNAME
='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
1003 SLIBNAME_WITH_VERSION
='$(SLIBNAME).$(LIBVERSION)'
1004 SLIBNAME_WITH_MAJOR
='$(SLIBNAME).$(LIBMAJOR)'
1005 LIB_INSTALL_EXTRA_CMD
='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
1007 # gcc stupidly only outputs the basename of targets with -MM, but we need the
1008 # full relative path for objects in subdirectories for non-recursive Make.
1009 DEPEND_CMD
='$(CC) $(CFLAGS) -MM -MG $< | sed -e "/^\#.*/d" -e "1s,^,$(@D)/," -e "s,\\([[:space:]]\\)\\(version\\.h\\),\\1\$$(BUILD_ROOT_REL)/\\2,"'
1012 source_path
="`dirname \"$0\"`"
1013 enable source_path_used
1014 if test -z
"$source_path" -o
"$source_path" = "." ; then
1016 disable source_path_used
1018 source_path
="`cd \"$source_path\"; pwd`"
1019 echo "$source_path" |
grep -q
'[[:blank:]]' &&
1020 die
"Out of tree builds are impossible with whitespace in source path."
1023 FFMPEG_CONFIGURATION
="$@"
1028 file=$source_path/$3
1029 sed -n
"s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
1032 ENCODER_LIST
=$
(find_things encoder ENC libavcodec
/allcodecs.c
)
1033 DECODER_LIST
=$
(find_things decoder DEC libavcodec
/allcodecs.c
)
1034 PARSER_LIST
=$
(find_things parser PARSER libavcodec
/allcodecs.c
)
1035 BSF_LIST
=$
(find_things bsf BSF libavcodec
/allcodecs.c
)
1036 MUXER_LIST
=$
(find_things muxer _MUX libavformat
/allformats.c
)
1037 DEMUXER_LIST
=$
(find_things demuxer DEMUX libavformat
/allformats.c
)
1038 OUTDEV_LIST
=$
(find_things muxer _MUX libavdevice
/alldevices.c
)
1039 INDEV_LIST
=$
(find_things demuxer DEMUX libavdevice
/alldevices.c
)
1040 PROTOCOL_LIST
=$
(find_things protocol PROTOCOL libavformat
/allformats.c
)
1041 FILTER_LIST
=$
(find_things filter FILTER libavfilter
/allfilters.c
)
1043 enable $ARCH_EXT_LIST \
1056 echo "Unknown option \"$1\"."
1057 echo "See $0 --help for available options."
1064 echo $
* |
sed s
/$suffix//g |
tr ' ' '\n' |
sort
1071 --extra-cflags
=*) add_cflags
"$optval"
1073 --extra-ldflags
=*) add_ldflags
"$optval"
1075 --extra-libs
=*) add_extralibs
"$optval"
1077 --disable-devices
) disable
$INDEV_LIST $OUTDEV_LIST
1079 --enable-debug
=*) debuglevel
="$optval"
1081 --enable-
*=*|
--disable-
*=*)
1082 eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
1084 encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter
) $action ${optval}_
${thing} ;;
1085 *) die_unknown
"$opt" ;;
1088 --enable-?
*|
--disable-?
*)
1089 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
1090 if is_in
$option $COMPONENT_LIST; then
1091 eval $action \$$
(toupper
${option%s})_LIST
1092 elif is_in
$option $CMDLINE_SELECT; then
1099 NAME
="${opt#--list-}"
1100 is_in
$NAME $COMPONENT_LIST || die_unknown
$opt
1102 eval show_list
$NAME \$$
(toupper
$NAME)_LIST
1104 --help|
-h
) show_help
1107 optname
="${opt%%=*}"
1108 optname
="${optname#--}"
1109 optname
=$
(echo "$optname" |
sed 's/-/_/g')
1110 is_in
$optname $CMDLINE_SET || die_unknown
$opt
1111 eval $optname='$optval'
1116 disabled logging
&& logfile
=/dev
/null
1118 echo "# $0 $@" > $logfile
1121 cc_default
="${cross_prefix}${cc_default}"
1122 yasmexe
="${cross_prefix}${yasmexe}"
1123 ar="${cross_prefix}${ar}"
1124 nm
="${cross_prefix}${nm}"
1125 ranlib
="${cross_prefix}${ranlib}"
1126 strip
="${cross_prefix}${strip}"
1130 # set temporary file name
1131 if test ! -z
"$TMPDIR" ; then
1133 elif test ! -z
"$TEMPDIR" ; then
1134 TMPDIR1
="${TEMPDIR}"
1139 TMPC
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
1140 TMPE
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}"
1141 TMPH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
1142 TMPO
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
1143 TMPS
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
1144 TMPSH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.sh"
1146 check_cflags
-std
=c99
1149 i386|i486|i586|i686|i86pc|BePC
)
1151 enable fast_unaligned
1155 enable fast_unaligned
1156 check_cc
<<EOF && enable fast_64bit && arch="x86_64"
1157 int test[sizeof(char*) - 7];
1160 # armv4l is a subset of armv[567]*l
1168 "Power Macintosh"|ppc|powerpc
)
1170 enable fast_unaligned
1175 enable fast_unaligned
1216 enabled_any x86_32 x86_64
&& enable x86
1217 enabled sparc64
&& enable sparc
1222 prefix_default
="$HOME/config"
1223 # helps building libavcodec
1224 add_cflags
"-DPIC -fomit-frame-pointer"
1225 # 3 gcc releases known for BeOS, each with ugly bugs
1226 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1227 case "$gcc_version" in
1228 2.9-beos-991026
*|
2.9-beos-000224
*) echo "R5/GG gcc"
1231 *20010315*) echo "BeBits gcc"
1232 add_cflags
"-fno-expensive-optimizations"
1236 # enable BeOS things
1238 # no need for libm, but the inet stuff
1240 # XXX: actually should check for NOT net_server
1241 if echo $BEINCLUDES |
grep -q
'headers/be/bone'; then
1242 network_extralibs
="-lbind -lsocket"
1244 enable beos_netserver
1245 network_extralibs
="-lnet"
1249 SHFLAGS
='-shared -Wl,-h,$$(@F)'
1250 network_extralibs
="-lsocket -lnsl"
1253 oss_demuxer_extralibs
="-lossaudio"
1254 oss_muxer_extralibs
="-lossaudio"
1257 disable need_memalign
1258 LIBOBJFLAGS
='$(PIC)'
1260 SLIBNAME
='$(SLIBPREF)$(FULLNAME)$(SLIBSUF).$(LIBVERSION)'
1261 SLIBNAME_WITH_VERSION
='$(SLIBNAME)'
1262 SLIBNAME_WITH_MAJOR
='$(SLIBNAME)'
1263 oss_demuxer_extralibs
="-lossaudio"
1264 oss_muxer_extralibs
="-lossaudio"
1267 disable need_memalign
1270 osextralibs
="-lpoll -lgnugetopt"
1274 disable need_memalign
1275 SHFLAGS
='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
1276 VHOOKSHFLAGS
='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(SHLIBDIR)/vhook/$$(@F)'
1278 FFLDFLAGS
="-Wl,-dynamic,-search_paths_first"
1280 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
1281 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
1282 FFSERVERLDFLAGS
=-Wl
,-bind_at_load
1284 enabled x86_64
&& objformat
="macho64"
1289 if test $arch = x86_64
; then
1290 disable need_memalign
1293 shlibdir_default
="$bindir_default"
1294 VHOOKSHFLAGS
='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1295 VHOOKLIBS
='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1296 if enabled swscale
; then
1297 VHOOKSHFLAGS
="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1298 VHOOKLIBS
="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1304 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1305 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1306 SLIB_EXTRA_CMD
='-lib /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
1307 SLIB_INSTALL_EXTRA_CMD
='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
1308 install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"'
1309 SLIB_UNINSTALL_EXTRA_CMD
='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
1310 SHFLAGS
='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
1316 shlibdir_default
="$bindir_default"
1317 VHOOKSHFLAGS
='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1318 VHOOKLIBS
='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1319 if enabled swscale
; then
1320 VHOOKSHFLAGS
="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1321 VHOOKLIBS
="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1326 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1327 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1328 SHFLAGS
='-shared -Wl,--enable-auto-image-base'
1332 *-dos|freedos|opendos
)
1333 disable ffplay ffserver vhook
1334 disable
$INDEV_LIST $OUTDEV_LIST
1335 network_extralibs
="-lsocket"
1345 ranlib
="echo ignoring ranlib"
1351 FFLDFLAGS
="-Zomf -Zbin-files -Zargs-wild -Zmap"
1352 SHFLAGS
='$(SUBDIR)$(NAME).def -Zdll -Zomf'
1357 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1358 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
1359 SLIB_CREATE_DEF_CMD
='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
1360 echo PROTMODE >> $(SUBDIR)$(NAME).def; \
1361 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
1362 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
1363 echo EXPORTS >> $(SUBDIR)$(NAME).def; \
1364 emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
1365 SLIB_EXTRA_CMD
='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
1366 emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
1367 SLIB_INSTALL_EXTRA_CMD
='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
1368 SLIB_UNINSTALL_EXTRA_CMD
='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
1377 target_os
="${target_os}-UNKNOWN"
1381 set_default
$PATHS_LIST
1383 add_extralibs
$osextralibs
1385 # Combine FFLDFLAGS and the LDFLAGS environment variable.
1386 LDFLAGS
="$FFLDFLAGS $LDFLAGS"
1388 test -n
"$cross_prefix" && enable cross_compile
1390 # we need to build at least one lib type
1391 if ! enabled_any static shared
; then
1393 At least one library type must be built.
1394 Specify --enable-static to build the static libraries or --enable-shared to
1395 build the shared libraries as well. To only build the shared libraries specify
1396 --disable-static in addition to --enable-shared.
1401 disabled static
&& LIBNAME
=""
1403 if enabled_any libfaad libfaadbin
; then
1404 if check_header faad.h
; then
1407 #ifndef FAAD2_VERSION
1410 int main(void) { return 0; }
1412 test $?
= 0 && enable libfaad2
1414 die
"FAAD test failed."
1419 if ! enabled gpl
; then
1423 enabled_any $@
&& die
"$name is under GPL and --enable-gpl is not specified."
1425 die_gpl_disabled
"The Postprocessing code" postproc
1426 die_gpl_disabled
"libx264" libx264
1427 die_gpl_disabled
"libxvidcore" libxvid
1428 die_gpl_disabled
"FAAD2" libfaad2
1429 die_gpl_disabled
"The X11 grabber" x11grab
1430 die_gpl_disabled
"The software scaler" swscale
1433 if ! enabled nonfree
&& enabled_any libamr_nb libamr_wb
; then
1434 die
"libamr is nonfree and --enable-nonfree is not specified."
1437 check_deps
$ARCH_EXT_LIST
1439 test -z
"$need_memalign" && need_memalign
="$mmx"
1442 if test $target_os = darwin
; then
1443 if $cc -v
2>&1 |
grep -q xlc
; then
1444 add_cflags
"-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1447 check_cflags
"-force_cpusubtype_ALL"
1448 check_cflags
"-Wno-sign-compare"
1449 enabled shared || check_cflags
-mdynamic-no-pic
1453 disabled optimizations || check_cflags
-fomit-frame-pointer
1455 # Add processor-specific flags
1456 if test $cpu != "generic"; then
1458 $1 altivec
&& echo "WARNING: Tuning for $2 but AltiVec $1.";
1461 601|ppc601|PowerPC601
)
1462 add_cflags
"-mcpu=601"
1463 warn_altivec enabled PPC601
1465 603*|ppc603
*|PowerPC603
*)
1466 add_cflags
"-mcpu=603"
1467 warn_altivec enabled PPC603
1469 604*|ppc604
*|PowerPC604
*)
1470 add_cflags
"-mcpu=604"
1471 warn_altivec enabled PPC604
1473 G3|g3|
75*|ppc75
*|PowerPC75
*)
1474 add_cflags
"-mcpu=750 -mpowerpc-gfxopt"
1475 warn_altivec enabled PPC75x
1477 G4|g4|
745*|ppc745
*|PowerPC745
*)
1478 add_cflags
"-mcpu=7450 -mpowerpc-gfxopt"
1479 warn_altivec disabled PPC745x
1481 74*|ppc74
*|PowerPC74
*)
1482 add_cflags
"-mcpu=7400 -mpowerpc-gfxopt"
1483 warn_altivec disabled PPC74xx
1485 G5|g5|
970|ppc970|PowerPC970|power4
*|Power4
*)
1486 add_cflags
"-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
1487 warn_altivec disabled PPC970
1491 add_cflags
"-mcpu=cell"
1492 warn_altivec disabled Cell
1495 # targets that do NOT support conditional mov (cmov)
1496 i
[345]86|pentium|pentium-mmx|k6|k6-
[23]|winchip-c6|winchip2|c3
)
1497 add_cflags
"-march=$cpu"
1500 # targets that do support conditional mov (cmov)
1501 i686|pentiumpro|pentium
[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-
[mx
]p|athlon64|k8|opteron|athlon-fx|core2
)
1502 add_cflags
"-march=$cpu"
1506 # targets that do support conditional mov but on which it's slow
1507 pentium4|pentium4m|prescott|nocona
)
1508 add_cflags
"-march=$cpu"
1513 add_cflags
"-mcpu=v9"
1516 add_cflags
"-mcpu=$cpu"
1517 enable fast_unaligned
1520 add_cflags
"-mcpu=$cpu"
1523 echo "WARNING: Unknown CPU \"$cpu\", ignored."
1528 # make sure we can execute files in $TMPDIR
1529 cat > $TMPSH 2>> $logfile <<EOF
1532 chmod +x
$TMPSH >> $logfile 2>&1
1533 if ! $TMPSH >> $logfile 2>&1; then
1535 Unable to create and execute files in $TMPDIR1. Set the TMPDIR environment
1536 variable to another directory and make sure that $TMPDIR1 is not mounted
1539 die
"Sanity test failed."
1543 # compiler sanity check
1545 int main(void){ return 0; }
1547 if test "$?" != 0; then
1548 echo "$cc is unable to create an executable file."
1549 if test -z
"$cross_prefix" && ! enabled cross_compile
; then
1550 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
1551 echo "Only do this if you know what cross compiling means."
1553 die
"C compiler test failed."
1556 check_cc
<<EOF || die "Symbol mangling check failed."
1559 sym
=$
($nm -P
-g
$TMPO |
grep ff_extern
)
1560 extern_prefix
=${sym%%ff_extern*}
1562 check_asm inline_asm
'""'
1564 if enabled x86
; then
1565 # check whether EBP is available on x86
1566 # As 'i' is stored on the stack, this program will crash
1567 # if the base pointer is used to access it because the
1568 # base pointer is cleared in the inline assembly code.
1569 check_exec_crash
<<EOF && enable ebp_available
1577 # check wether EBX is available on x86
1578 check_asm ebx_available
'"":::"%ebx"'
1580 # check whether binutils is new enough to compile SSSE3/MMX2
1581 enabled ssse3
&& check_asm ssse3
'"pabsw %xmm0, %xmm0"'
1582 enabled mmx2
&& check_asm mmx2
'"movss %xmm0, %xmm0"'
1584 check_asm bswap
'"bswap %%eax" ::: "%eax"'
1586 YASMFLAGS
="-f $objformat -DARCH_$(toupper $arch)"
1587 enabled x86_64
&& append YASMFLAGS
"-m amd64"
1588 enabled_all x86_64 shared
&& append YASMFLAGS
"-DPIC"
1589 case "$objformat" in
1590 elf
) enabled debug
&& append YASMFLAGS
"-g dwarf2" ;;
1591 macho64
) append YASMFLAGS
"-DPIC -DPREFIX" ;;
1592 *) append YASMFLAGS
"-DPREFIX" ;;
1594 check_yasm
"pabsw xmm0, xmm0" && enable yasm
1597 # check for assembler specific support
1599 if test $arch = "powerpc"; then
1600 check_asm dcbzl
'"dcbzl 0, 1"'
1603 # check for SIMD availability
1605 # AltiVec flags: The FSF version of GCC differs from the Apple version
1606 if enabled altivec
; then
1607 check_cflags
-maltivec
-mabi
=altivec
&&
1608 { check_header altivec.h
&& inc_altivec_h
="#include <altivec.h>" ; } ||
1609 check_cflags
-faltivec
1611 # check if our compiler supports Motorola AltiVec C API
1612 check_cc
<<EOF || disable altivec
1615 vector signed int v1, v2, v3;
1616 v1 = vec_add(v2,v3);
1621 # check if our compiler supports braces for vector declarations
1622 check_cc
<<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
1624 int main (void) { (vector int) {1}; return 0; }
1628 # We have to check if pld is a nop and disable it.
1629 enabled armv4l
&& check_asm pld
'"pld [r0]"'
1630 enabled armv5te
&& check_asm armv5te
'"qadd r0, r0, r0"'
1631 enabled armv6
&& check_asm armv6
'"sadd16 r0, r0, r0"'
1632 enabled armvfp
&& check_asm armvfp
'"fadds s0, s0, s0"'
1633 enabled iwmmxt
&& check_asm iwmmxt
'"wunpckelub wr6, wr4"'
1634 enabled mmi
&& check_asm mmi
'"lq $2, 0($2)"'
1635 enabled neon
&& check_asm neon
'"vadd.i16 q0, q0, q0"'
1636 enabled vis
&& check_asm vis
'"pdist %f0, %f0, %f0"' -mcpu
=ultrasparc
1638 enabled vis
&& add_cflags
"-mcpu=ultrasparc -mtune=ultrasparc"
1641 # big/little-endian test
1642 check_cc
<<EOF || die "endian test failed"
1643 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
1645 od -A n
-t x1
$TMPO |
grep -q
'42 *49 *47 *45' && enable bigendian
1648 # check availability of some header files
1650 if check_func dlopen
; then
1652 elif check_func dlopen
-ldl
; then
1657 check_func gethrtime
1658 check_func getrusage
1659 check_func inet_aton
$network_extralibs
1662 check_func_headers windows.h GetProcessTimes
1664 check_header conio.h
1665 check_header dlfcn.h
1666 check_header malloc.h
1668 check_header sys
/mman.h
1669 check_header sys
/resource.h
1670 check_header sys
/select.h
1671 check_header termios.h
1673 if ! enabled_any memalign memalign_hack
&& enabled need_memalign
; then
1674 die
"Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1677 enabled zlib
&& check_lib zlib.h zlibVersion
-lz || disable zlib
1678 enabled bzlib
&& check_lib bzlib.h BZ2_bzlibVersion
-lbz2 || disable bzlib
1680 # check for some common methods of building with pthread support
1681 # do this before the optional library checks as some of them require pthreads
1682 if enabled pthreads
; then
1683 if check_func pthread_create
; then
1685 elif check_func pthread_create
-pthread
; then
1687 add_extralibs
-pthread
1688 elif check_func pthread_create
-pthreads
; then
1689 add_cflags
-pthreads
1690 add_extralibs
-pthreads
1691 elif check_func pthread_create
-lpthreadGC2
; then
1692 add_extralibs
-lpthreadGC2
1693 elif ! check_lib pthread.h pthread_create
-lpthread
; then
1694 die
"ERROR: can't find pthreads library"
1698 for thread
in $THREADS_LIST; do
1699 if enabled
$thread; then
1700 test -n
"$thread_type" &&
1701 die
"ERROR: Only one thread type must be selected." ||
1702 thread_type
="$thread"
1706 check_lib math.h sin
-lm
1708 # test for C99 functions in math.h
1709 for func
in llrint lrint lrintf round roundf
; do
1710 check_exec
<<EOF && enable $func || disable $func
1712 int main(void) { return ($func(3.999f) > 0)?0:1; }
1716 # these are off by default, so fail if requested and not available
1717 enabled avisynth
&& require2 vfw32
"windows.h vfw.h" AVIFileInit
-lvfw32
1718 enabled libamr_nb
&& require libamrnb amrnb
/interf_dec.h Speech_Decode_Frame_init
-lamrnb
-lm
1719 enabled libamr_wb
&& require libamrwb amrwb
/dec_if.h D_IF_init
-lamrwb
-lm
1720 enabled libdirac
&& add_cflags
"$(pkg-config --cflags dirac)" &&
1721 require libdirac libdirac_decoder
/dirac_parser.h dirac_decoder_init
-ldirac_decoder
&&
1722 require libdirac libdirac_encoder
/dirac_encoder.h dirac_encoder_init
-ldirac_encoder
1723 enabled libfaac
&& require2 libfaac
"stdint.h faac.h" faacEncGetVersion
-lfaac
1724 enabled libfaad
&& require2 libfaad faad.h faacDecOpen
-lfaad
1725 enabled libgsm
&& require libgsm gsm.h gsm_create
-lgsm
1726 enabled libmp3lame
&& require LAME lame
/lame.h lame_init
-lmp3lame
-lm
1727 enabled libnut
&& require libnut libnut.h nut_demuxer_init
-lnut
1728 enabled libschroedinger
&& add_cflags $
(pkg-config
--cflags schroedinger-1.0
) &&
1729 require libschroedinger schroedinger
/schro.h schro_init $
(pkg-config
--libs schroedinger-1.0
)
1730 enabled libtheora
&& require libtheora theora
/theora.h theora_info_init
-ltheora
-logg
1731 enabled libvorbis
&& require libvorbis vorbis
/vorbisenc.h vorbis_info_init
-lvorbisenc
-lvorbis
-logg
1732 enabled libx264
&& require x264 x264.h x264_encoder_open
-lx264
-lm
&&
1733 { check_cpp_condition x264.h
"X264_BUILD >= 65" ||
1734 die
"ERROR: libx264 version must be >= 0.65."; }
1735 enabled libxvid
&& require Xvid xvid.h xvid_global
-lxvidcore
1736 enabled mlib
&& require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod
-lmlib
1739 if enabled libdc1394
; then
1740 { check_lib dc1394
/dc1394.h dc1394_new
-ldc1394
-lraw1394
&&
1741 enable libdc1394_2
; } ||
1742 { check_lib libdc1394
/dc1394_control.h dc1394_create_handle
-ldc1394_control
-lraw1394
&&
1743 enable libdc1394_1
; } ||
1744 die
"ERROR: No version of libdc1394 found "
1749 for restrict_keyword
in restrict __restrict__ __restrict
; do
1750 check_cc
<<EOF && _restrict=$restrict_keyword && break
1751 void foo(char * $restrict_keyword p);
1755 test "$vhook" = "default" && vhook
="$dlopen"
1757 if test "$target_os" = cygwin
-o
"$target_os" = mingw32
&& enabled_all static vhook
; then
1760 echo "At the moment vhooks don't work on Cygwin or MinGW static builds."
1761 echo "Patches welcome."
1765 if enabled vhook
; then
1766 check_ldflags
-rdynamic
1767 check_ldflags
-export-dynamic
1770 check_foo_config imlib2 imlib2 Imlib2.h imlib_load_font
1771 check_foo_config freetype2 freetype ft2build.h FT_Init_FreeType
1773 ##########################################
1778 SDL_CONFIG
="${cross_prefix}sdl-config"
1779 if "${SDL_CONFIG}" --version
> /dev
/null
2>&1; then
1780 sdl_cflags
=`"${SDL_CONFIG}" --cflags`
1781 temp_cflags
$sdl_cflags
1782 temp_extralibs
`"${SDL_CONFIG}" --libs`
1783 if check_lib2 SDL.h SDL_Init
; then
1784 _sdlversion
=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1785 if test "$_sdlversion" -lt
121 ; then
1789 check_cc
$sdl_cflags <<EOF && enable sdl_video_size
1791 int main(int argc, char **argv){
1792 const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1793 int w = vi->current_w;
1802 texi2html
-version
> /dev
/null
2>&1 && enable texi2html || disable texi2html
1804 ##########################################
1807 if enabled network
; then
1808 check_type sys
/socket.h socklen_t
1809 # Prefer arpa/inet.h over winsock2
1810 if check_header arpa
/inet.h
; then
1811 check_func closesocket
1812 elif check_header winsock2.h
; then
1813 network_extralibs
="-lws2_32"
1814 check_type ws2tcpip.h socklen_t
1815 check_func_headers winsock2.h closesocket
1819 ##########################################
1822 enabled network
&& enabled ipv6
&& check_ld
<<EOF && enable ipv6 || disable ipv6
1823 #include <sys/types.h>
1824 #include <sys/socket.h>
1825 #include <netinet/in.h>
1828 struct sockaddr_storage saddr;
1829 struct ipv6_mreq mreq6;
1830 getaddrinfo(0,0,0,0);
1831 getnameinfo(0,0,0,0,0,0,0);
1832 IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1836 check_header linux
/videodev.h
1837 check_header linux
/videodev2.h
1838 check_header sys
/videoio.h
1840 check_func_headers
"windows.h vfw.h" capCreateCaptureWindow
-lvfw32
1842 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
1843 { check_header dev
/bktr
/ioctl_meteor.h
&&
1844 check_header dev
/bktr
/ioctl_bt848.h
; } ||
1845 { check_header machine
/ioctl_meteor.h
&&
1846 check_header machine
/ioctl_bt848.h
; } ||
1847 { check_header dev
/video
/meteor
/ioctl_meteor.h
&&
1848 check_header dev
/video
/bktr
/ioctl_bt848.h
; } ||
1849 check_header dev
/ic
/bt8xx.h
1851 check_header sys
/soundcard.h
1852 check_header soundcard.h
1854 # deal with the X11 frame grabber
1856 check_header X11
/Xlib.h
&&
1857 check_header X11
/extensions
/XShm.h
&&
1858 check_func XOpenDisplay
-lX11
&&
1859 check_func XShmCreateImage
-lX11
-lXext
1861 enabled debug
&& add_cflags
-g
"$debuglevel"
1863 # add some useful compiler flags if supported
1864 check_cflags
-Wdeclaration-after-statement
1866 check_cflags
-Wno-switch
1867 check_cflags
-Wdisabled-optimization
1868 check_cflags
-Wpointer-arith
1869 check_cflags
-Wredundant-decls
1870 check_cflags
-Wno-pointer-sign
1871 check_cflags
-Wcast-qual
1872 check_cflags
-Wwrite-strings
1873 check_cflags
-Wtype-limits
1874 enabled extra_warnings
&& check_cflags
-Winline
1876 # add some linker flags
1877 check_ldflags
-Wl
,--warn-common
1878 check_ldflags
-Wl
,--as-needed
1879 check_ldflags
'-Wl,-rpath-link,\$(BUILD_ROOT)/libpostproc -Wl,-rpath-link,\$(BUILD_ROOT)/libswscale -Wl,-rpath-link,\$(BUILD_ROOT)/libavfilter -Wl,-rpath-link,\$(BUILD_ROOT)/libavdevice -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
1880 check_ldflags
-Wl
,-Bsymbolic
1882 if enabled small
; then
1883 check_cflags
-Os
# not all compilers support -Os
1884 optimizations
="small"
1885 elif enabled optimizations
; then
1886 if $cc -v
2>&1 |
grep -q xlc
; then
1893 check_cflags
-fno-math-errno
1894 check_cflags
-fno-signed-zeros
1896 # add some flags for Intel C Compiler
1897 if $cc --version
2> /dev
/null |
grep -q Intel
; then
1898 # Just warnings, no remarks
1900 # -wd: Disable following warnings
1901 # 144, 167, 556: -Wno-pointer-sign
1902 # 10006: ignoring unknown option -fno-signed-zeros
1903 # 10156: ignoring option '-W'; no argument required
1904 check_cflags
-wd144
,167,556,10006,10156
1905 # 11030: Warning unknown option --as-needed
1906 # 10156: ignoring option '-export'; no argument required
1907 check_ldflags
-wd10156
,11030
1908 # Allow to compile with optimizations
1909 check_ldflags
-march
=$cpu
1912 # PIC flags for shared library objects where they are needed
1913 if enabled shared
; then
1914 # LIBOBJFLAGS may have already been set in the OS configuration
1915 if test -z
"$LIBOBJFLAGS" ; then
1917 x86_64|ia64|alpha|sparc
*|power
*|parisc
*|mips
*) LIBOBJFLAGS
='$(PIC)' ;;
1922 if enabled gprof
; then
1929 # Find out if the .align argument is a power of two or not.
1930 if test $asmalign_pot = "unknown"; then
1931 disable asmalign_pot
1932 echo '__asm__ (".align 3");' | check_cc
&& enable asmalign_pot
1935 enabled_any
$DECODER_LIST && enable decoders
1936 enabled_any
$ENCODER_LIST && enable encoders
1937 enabled_any
$BSF_LIST && enable bsfs
1938 enabled_any
$DEMUXER_LIST && enable demuxers
1939 enabled_any
$MUXER_LIST && enable muxers
1940 enabled_any
$FILTER_LIST && enable filters
1941 enabled_any
$INDEV_LIST && enable demuxers
1942 enabled_any
$OUTDEV_LIST && enable muxers
1943 enabled_any
$PROTOCOL_LIST && enable protocols
1945 enabled_any
$THREADS_LIST && enable threads
1947 check_deps
$CONFIG_LIST \
1960 enabled libdc1394
&& append pkg_requires
"libraw1394"
1961 enabled libdirac
&& append pkg_requires
"dirac"
1962 enabled libtheora
&& append pkg_requires
"theora"
1963 enabled libvorbis
&& append pkg_requires
"vorbisenc"
1965 echo "install prefix $prefix"
1966 echo "source path $source_path"
1967 echo "C compiler $cc"
1968 echo ".align is power-of-two $asmalign_pot"
1969 echo "ARCH $arch ($cpu)"
1970 if test "$build_suffix" != ""; then
1971 echo "build suffix $build_suffix"
1973 if test "$extra_version" != ""; then
1974 echo "version string suffix $extra_version"
1976 echo "big-endian ${bigendian-no}"
1977 if test $arch = "x86_32" -o
$arch = "x86_64"; then
1978 echo "yasm ${yasm-no}"
1979 echo "MMX enabled ${mmx-no}"
1980 echo "CMOV enabled ${cmov-no}"
1981 echo "CMOV is fast ${fast_cmov-no}"
1982 echo "EBX available ${ebx_available-no}"
1983 echo "EBP available ${ebp_available-no}"
1985 if test $arch = "armv4l"; then
1986 echo "ARMv5TE enabled ${armv5te-no}"
1987 echo "ARMv6 enabled ${armv6-no}"
1988 echo "ARM VFP enabled ${armvfp-no}"
1989 echo "IWMMXT enabled ${iwmmxt-no}"
1990 echo "NEON enabled ${neon-no}"
1992 if test $arch = "mips"; then
1993 echo "MMI enabled ${mmi-no}"
1995 if test $arch = "powerpc"; then
1996 echo "AltiVec enabled ${altivec-no}"
1997 echo "dcbzl available ${dcbzl-no}"
1999 echo "gprof enabled ${gprof-no}"
2000 echo "debug symbols ${debug-no}"
2001 echo "strip symbols ${stripping-no}"
2002 echo "optimizations ${optimizations-no}"
2003 echo "static ${static-no}"
2004 echo "shared ${shared-no}"
2005 echo "postprocessing support ${postproc-no}"
2006 echo "software scaler enabled ${swscale-no}"
2007 echo "new filter support ${avfilter-no}"
2008 echo "filters using lavformat ${avfilter_lavf-no}"
2009 echo "video hooking ${vhook-no}"
2010 if enabled vhook
; then
2011 echo "Imlib2 support ${imlib2-no}"
2012 echo "FreeType support ${freetype2-no}"
2014 echo "network support ${network-no}"
2015 if enabled network
; then
2016 echo "IPv6 support ${ipv6-no}"
2018 echo "threading support ${thread_type-no}"
2019 echo "SDL support ${sdl-no}"
2020 if enabled sdl_too_old
; then
2021 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
2023 echo "Sun medialib support ${mlib-no}"
2024 echo "AVISynth enabled ${avisynth-no}"
2025 echo "libamr-nb support ${libamr_nb-no}"
2026 echo "libamr-wb support ${libamr_wb-no}"
2027 echo "libdc1394 support ${libdc1394-no}"
2028 echo "libdirac enabled ${libdirac-no}"
2029 echo "libfaac enabled ${libfaac-no}"
2030 echo "libfaad enabled ${libfaad-no}"
2031 echo "libfaad dlopened ${libfaadbin-no}"
2032 echo "libgsm enabled ${libgsm-no}"
2033 echo "libmp3lame enabled ${libmp3lame-no}"
2034 echo "libnut enabled ${libnut-no}"
2035 echo "libschroedinger enabled ${libschroedinger-no}"
2036 echo "libtheora enabled ${libtheora-no}"
2037 echo "libvorbis enabled ${libvorbis-no}"
2038 echo "libx264 enabled ${libx264-no}"
2039 echo "libxvid enabled ${libxvid-no}"
2040 echo "zlib enabled ${zlib-no}"
2041 echo "bzlib enabled ${bzlib-no}"
2044 for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev
; do
2045 echo "Enabled ${type}s:"
2046 eval list
=\$$
(toupper
$type)_LIST
2047 for part
in $list; do
2048 enabled
$part && echo ${part%_*}
2049 done |
sort |
pr -3 -t
2054 if enabled nonfree
; then
2055 license
="unredistributable"
2056 elif enabled gpl
; then
2060 echo "License: $license"
2062 echo "Creating config.mak and config.h..."
2064 echo "# Automatically generated by configure - do not modify!" > config.mak
2065 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
2066 echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH
2067 echo "#define FFMPEG_CONFIG_H" >> $TMPH
2068 echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
2070 echo "FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION" >> config.mak
2071 echo "prefix=$prefix" >> config.mak
2072 echo "LIBDIR=\$(DESTDIR)$libdir" >> config.mak
2073 echo "SHLIBDIR=\$(DESTDIR)$shlibdir" >> config.mak
2074 echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
2075 echo "BINDIR=\$(DESTDIR)$bindir" >> config.mak
2076 echo "MANDIR=\$(DESTDIR)$mandir" >> config.mak
2077 echo "CC=$cc" >> config.mak
2078 echo "YASM=$yasmexe" >> config.mak
2079 echo "AR=$ar" >> config.mak
2080 echo "RANLIB=$ranlib" >> config.mak
2081 echo "LN_S=$ln_s" >> config.mak
2082 enabled stripping
&&
2083 echo "STRIP=$strip" >> config.mak ||
2084 echo "STRIP=echo ignoring strip" >> config.mak
2086 echo "OPTFLAGS=$CFLAGS" >> config.mak
2087 echo "VHOOKCFLAGS=$VHOOKCFLAGS" >> config.mak
2088 echo "LDFLAGS=$LDFLAGS" >> config.mak
2089 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
2090 echo "SHFLAGS=$SHFLAGS" >> config.mak
2091 echo "YASMFLAGS=$YASMFLAGS" >> config.mak
2092 echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
2093 echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
2094 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
2095 echo "BUILD_STATIC=$static" >> config.mak
2096 echo "BUILDSUF=$build_suffix" >> config.mak
2097 echo "FULLNAME=$FULLNAME" >> config.mak
2098 echo "LIBPREF=$LIBPREF" >> config.mak
2099 echo "LIBSUF=$LIBSUF" >> config.mak
2100 echo "LIBNAME=$LIBNAME" >> config.mak
2101 echo "SLIBPREF=$SLIBPREF" >> config.mak
2102 echo "SLIBSUF=$SLIBSUF" >> config.mak
2103 echo "EXESUF=$EXESUF" >> config.mak
2104 echo "EXTRA_VERSION=$extra_version" >> config.mak
2105 echo "DEPEND_CMD=$DEPEND_CMD" >> config.mak
2107 if enabled bigendian
; then
2108 echo "WORDS_BIGENDIAN=yes" >> config.mak
2109 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
2112 if enabled sdl
; then
2113 echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
2114 echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
2116 if enabled texi2html
; then
2117 echo "BUILD_DOC=yes" >> config.mak
2122 file=$source_path/$2
2123 eval $
(grep "#define ${name}_VERSION_M" "$file" |
awk '{ print $2"="$3 }')
2124 eval ${name}_VERSION
=\$
${name}_VERSION_MAJOR.\$
${name}_VERSION_MINOR.\$
${name}_VERSION_MICRO
2125 lcname
=$
(tolower
$name)
2126 eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
2127 eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
2130 get_version LIBSWSCALE libswscale
/swscale.h
2131 get_version LIBPOSTPROC libpostproc
/postprocess.h
2132 get_version LIBAVCODEC libavcodec
/avcodec.h
2133 get_version LIBAVDEVICE libavdevice
/avdevice.h
2134 get_version LIBAVFORMAT libavformat
/avformat.h
2135 get_version LIBAVUTIL libavutil
/avutil.h
2136 get_version LIBAVFILTER libavfilter
/avfilter.h
2138 if enabled shared
; then
2139 echo "BUILD_SHARED=yes" >> config.mak
2140 echo "PIC=-fPIC -DPIC" >> config.mak
2141 echo "LIBTARGET=${LIBTARGET}" >> config.mak
2142 echo "SLIBNAME=${SLIBNAME}" >> config.mak
2143 echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
2144 echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
2145 echo "SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}" >> config.mak
2146 echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
2147 echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
2148 echo "SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}" >> config.mak
2150 echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
2151 echo "EXTRALIBS=$extralibs" >> config.mak
2153 print_config ARCH_
$TMPH config.mak
$ARCH_LIST
2154 print_config HAVE_
$TMPH config.mak
$HAVE_LIST
2155 print_config CONFIG_
$TMPH config.mak
$CONFIG_LIST \
2167 echo "#define restrict $_restrict" >> $TMPH
2169 if enabled small
; then
2170 echo "#define av_always_inline" >> $TMPH
2173 echo "SRC_PATH=\"$source_path\"" >> config.mak
2174 echo "SRC_PATH_BARE=$source_path" >> config.mak
2175 echo "BUILD_ROOT=\"$PWD\"" >> config.mak
2177 # Apparently it's not possible to portably echo a backslash.
2178 enabled asmalign_pot
&&
2179 printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH ||
2180 printf '#define ASMALIGN(ZEROBITS) ".align 1 << " #ZEROBITS "\\n\\t"\n' >> $TMPH
2182 echo "#define EXTERN_PREFIX \"${extern_prefix}\"" >> $TMPH
2184 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
2186 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
2187 cmp -s
$TMPH config.h
&&
2188 echo "config.h is unchanged" ||
2189 mv -f
$TMPH config.h
2191 rm -f
$TMPC $TMPE $TMPH $TMPO $TMPS $TMPSH
2193 # build tree in object directory if source path is different from current one
2194 if enabled source_path_used
; then
2221 libavcodec/Makefile \
2222 libavdevice/Makefile \
2223 libavfilter/Makefile \
2224 libavformat/Makefile \
2225 libavutil/Makefile \
2226 libpostproc/Makefile \
2227 libswscale/Makefile \
2229 for dir
in $DIRS ; do
2232 for f
in $FILES ; do
2233 $ln_s "$source_path/$f" $f
2238 # build pkg-config files
2240 pkgconfig_generate
(){
2242 shortname
=${name#lib}
2247 cat <<EOF > $name/$name.pc
2249 exec_prefix=\${prefix}
2254 Description: $comment
2256 Requires: $(disabled shared && echo $requires)
2257 Requires.private: $(enabled shared && echo $requires)
2259 Libs: -L\${libdir} -l${shortname} $(disabled shared && echo $libs)
2260 Libs.private: $(enabled shared && echo $libs)
2261 Cflags: -I\${includedir}
2263 cat <<EOF > $name/$name-uninstalled.pc
2266 libdir=\${pcfiledir}
2267 includedir=${source_path}
2270 Description: $comment
2274 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
2275 Cflags: -I\${includedir}
2279 pkgconfig_generate libavutil
"FFmpeg utility library" "$LIBAVUTIL_VERSION"
2280 pkgconfig_generate libavcodec
"FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2281 pkgconfig_generate libavformat
"FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2282 pkgconfig_generate libavdevice
"FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
2284 pkgconfig_generate libavfilter
"FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2286 pkgconfig_generate libpostproc
"FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
2287 if enabled swscale
; then
2288 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
2290 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2291 apply libswscale
/libswscale.pc
sed s
/^Libs
:.
*$
/Libs
:/