]> git.sesse.net Git - ffmpeg/blob - configure
flush audio encoder buffers at the end
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard
4 #
5
6 if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
7 cat << EOF
8
9 Usage: configure [options]
10 Options: [defaults in brackets after descriptions]
11
12 EOF
13 echo "Standard options:"
14 echo "  --help                   print this message"
15 echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
16 echo "  --mandir=DIR             man documentation in DIR [PREFIX/man]"
17 echo "  --enable-mp3lame         enable mp3 encoding via libmp3lame [default=no]"
18 echo "  --enable-vorbis          enable vorbis support via libvorbisenc [default=no]"
19 echo "  --enable-faad            enable faad support via libfaad [default=no]"
20 echo "  --enable-faadbin         build faad support with runtime linking [default=no]"
21 echo "  --enable-faac            enable faac support via libfaac [default=no]"
22 echo "  --enable-mingw32         enable mingw32 native/cross windows compile"
23 echo "  --enable-a52             enable GPL'ed A52 support [default=no]"
24 echo "  --enable-a52bin          open liba52.so.0 at runtime [default=no]"
25 echo "  --enable-pp              enable GPL'ed post processing support [default=no]"
26 echo "  --enable-shared-pp       use libpostproc.so [default=no]"
27 echo "  --enable-shared          build shared libraries [default=no]"
28 echo "  --enable-amr_nb          enable amr_nb float audio codec"
29 echo "  --enable-amr_nb-fixed    use fixed point for amr-nb codec"
30 echo "  --enable-amr_wb          enable amr_wb float audio codec"
31 echo "  --enable-sunmlib         use Sun medialib [default=no]"
32 echo "  --enable-pthreads        use pthreads [default=no]"
33 echo "  --enable-gpl             allow use of gpl code, the resulting libav* and ffmpeg will be under gpl [default=no]"
34 echo ""
35 echo "Advanced options (experts only):"
36 echo "  --source-path=PATH       path of source code [$source_path]"
37 echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
38 echo "  --cc=CC                  use C compiler CC [$cc]"
39 echo "  --make=MAKE              use specified make [$make]"
40 echo "  --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]"
41 echo "  --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
42 echo "  --extra-libs=ELIBS       add ELIBS [$ELIBS]"
43 echo "  --cpu=CPU                force cpu to CPU  [$cpu]"
44 echo "  --tune=PROCESSOR         tune code for a particular CPU (may fails or misperforms on other CPUs)"
45 echo "  --powerpc-perf-enable    enable performance report on PPC (requires enabling PMC)"
46 echo "  --disable-mmx            disable mmx usage"
47 echo "  --disable-altivec        disable AltiVec usage"
48 echo "  --disable-audio-oss      disable OSS audio support [default=no]"
49 echo "  --disable-audio-beos     disable BeOS audio support [default=no]"
50 echo "  --disable-v4l            disable video4linux grabbing [default=no]"
51 echo "  --disable-dv1394         disable DV1394 grabbing [default=no]"
52 echo "  --disable-network        disable network support [default=no]"
53 echo "  --disable-zlib           disable zlib [default=no]"
54 echo "  --disable-simple_idct    disable simple IDCT routines [default=no]"
55 echo "  --disable-vhook          disable video hooking support"
56 echo "  --enable-gprof           enable profiling with gprof [$gprof]"
57 echo "  --disable-debug          disable debugging symbols"
58 echo "  --disable-opts           disable compiler optimizations"
59 echo "  --disable-mpegaudio-hp   faster (but less accurate)"
60 echo "                           mpegaudio decoding [default=no]"
61 echo "  --disable-ffserver       disable ffserver build"
62 echo "  --disable-ffplay         disable ffplay build"
63 echo "  --disable-risky          disables patent encumbered codecs"
64 echo "  --enable-small           optimize for size instead of speed"
65 echo "  --enable-memalign-hack   emulate memalign, interferes with memory debuggers"
66 echo ""
67 echo "NOTE: The object files are build at the place where configure is launched"
68 exit 1
69 fi
70
71 # set temporary file name
72 if test ! -z "$TMPDIR" ; then
73     TMPDIR1="${TMPDIR}"
74 elif test ! -z "$TEMPDIR" ; then
75     TMPDIR1="${TEMPDIR}"
76 else
77     TMPDIR1="/tmp"
78 fi
79
80 TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
81 TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
82 TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
83 TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
84 TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
85
86 # default parameters
87 prefix="/usr/local"
88 mandir=""
89 bindir=""
90 cross_prefix=""
91 cc="gcc"
92 ar="ar"
93 ranlib="ranlib"
94 make="make"
95 strip="strip"
96 cpu=`uname -m`
97 tune="generic"
98 powerpc_perf="no"
99 mmx="default"
100 altivec="default"
101 mmi="default"
102 case "$cpu" in
103   i386|i486|i586|i686|i86pc|BePC)
104     cpu="x86"
105   ;;
106   # armv4l is a subset of armv5tel
107   armv4l|armv5tel)
108     cpu="armv4l"
109   ;;
110   alpha)
111     cpu="alpha"
112   ;;
113   "Power Macintosh"|ppc)
114     cpu="powerpc"
115   ;;
116   mips)
117     cpu="mips"
118   ;;
119   sun4u|sparc64)
120     cpu="sparc64"
121   ;;
122   sparc)
123     cpu="sparc"
124   ;;
125   sh4)
126     cpu="sh4"
127   ;;
128   *)
129     cpu="unknown"
130   ;;
131 esac
132 gprof="no"
133 v4l="yes"
134 audio_oss="yes"
135 audio_beos="no"
136 dv1394="yes"
137 network="yes"
138 zlib="yes"
139 mp3lame="no"
140 vorbis="no"
141 faad="no"
142 faadbin="no"
143 faac="no"
144 a52="no"
145 a52bin="no"
146 pp="no"
147 shared_pp="no"
148 mingw32="no"
149 cygwin="no"
150 os2="no"
151 lshared="no"
152 optimize="yes"
153 debug="yes"
154 extralibs="-lm"
155 simpleidct="yes"
156 bigendian="no"
157 inttypes="yes"
158 emu_fast_int="no"
159 vhook="default"
160 dlfcn="no"
161 dlopen="no"
162 mpegaudio_hp="yes"
163 SHFLAGS=-shared
164 netserver="no"
165 need_inet_aton="no"
166 ffserver="yes"
167 ffplay="yes"
168 LDFLAGS=-Wl,--warn-common
169 FFSLDFLAGS=-Wl,-E
170 LIBPREF="lib"
171 LIBSUF=".a"
172 SLIBPREF="lib"
173 SLIBSUF=".so"
174 EXESUF=""
175 risky="yes"
176 amr_nb="no"
177 amr_wb="no"
178 amr_nb_fixed="no"
179 sunmlib="no"
180 pthreads="no"
181 gpl="no"
182 memalignhack="no"
183
184 # OS specific
185 targetos=`uname -s`
186 case $targetos in
187 BeOS)
188 prefix="/boot/home/config"
189 # helps building libavcodec
190 CFLAGS="-DPIC -fomit-frame-pointer"
191 # 3 gcc releases known for BeOS, each with ugly bugs
192 gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
193 case "$gcc_version" in
194 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
195 mmx="no"
196 ;;
197 *20010315*) echo "BeBits gcc"
198 CFLAGS="$CFLAGS -fno-expensive-optimizations"
199 ;;
200 esac
201 SHFLAGS=-nostart
202 # disable linux things
203 audio_oss="no"
204 v4l="no"
205 dv1394="no"
206 # enable beos things
207 audio_beos="yes"
208 # no need for libm, but the inet stuff
209 # Check for BONE
210 if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then
211 extralibs="-lbind -lsocket"
212 else
213 netserver="yes"
214 need_inet_aton="yes"
215 extralibs="-lnet"
216 fi ;;
217 SunOS)
218 v4l="no"
219 audio_oss="no"
220 dv1394="no"
221 make="gmake"
222 LDFLAGS=""
223 FFSLDFLAGS=""
224 need_inet_aton="yes"
225 extralibs="$extralibs -lsocket -lnsl"
226 ;;
227 FreeBSD)
228 v4l="no"
229 audio_oss="yes"
230 dv1394="no"
231 make="gmake"
232 CFLAGS="-pthread"
233 LDFLAGS="$LDFLAGS -export-dynamic -pthread"
234 ;;
235 BSD/OS)
236 v4l="no"
237 audio_oss="yes"
238 dv1394="no"
239 extralibs="-lpoll -lgnugetopt -lm"
240 make="gmake"
241 ;;
242 Darwin)
243 cc="cc"
244 v4l="no"
245 audio_oss="no"
246 dv1394="no"
247 ffserver="no"
248 SHFLAGS="-dynamiclib"
249 extralibs=""
250 darwin="yes"
251 strip="strip -x"
252 LDFLAGS="-Wl,-d"
253 FFSLDFLAGS=-Wl,-bind_at_load
254 ;;
255 MINGW32*)
256 # Note: the rest of the mingw32 config is done afterwards as mingw32
257 # can be forced on command line for linux cross compilation
258 mingw32="yes"
259 ;;
260 CYGWIN*)
261 v4l="no"
262 audio_oss="yes"
263 dv1394="no"
264 extralibs=""
265 cygwin="yes"
266 test -f /usr/include/inttypes.h || \
267 test -f /usr/local/include/inttypes.h || \
268 echo "Missing inttypes.h, please copy cygwin_inttypes.h to" \
269      "/usr/include/inttypes.h !!!"
270 ;;
271 Linux)
272 LDFLAGS="$LDFLAGS -rdynamic"
273 ;;
274 IRIX*)
275 ranlib="echo ignoring ranlib"
276 v4l="no"
277 audio_oss="no"
278 make="gmake"
279 ;;
280 OS/2)
281 TMPE=$TMPE".exe"
282 ar="emxomfar -p64"
283 ranlib="echo ignoring ranlib"
284 strip="echo ignoring strip"
285 CFLAGS="-Zomf"
286 LDFLAGS="-Zomf -Zstack 16384 -s"
287 SHFLAGS=""
288 FFSLDFLAGS=""
289 LIBPREF=""
290 LIBSUF=".lib"
291 SLIBPREF=""
292 SLIBSUF=".dll"
293 EXESUF=".exe"
294 extralibs=""
295 v4l="no"
296 audio_oss="no"
297 dv1394="no"
298 network="no"
299 ffserver="no"
300 os2="yes"
301 ;;
302 *) ;;
303 esac
304
305 # From mplayer configure. We need TARGET_OS available
306 # to the Makefile, so it can distinguish between flavors
307 # of AltiVec on PowerPC
308 TARGET_OS=`( uname -s ) 2>&1`
309   case "$TARGET_OS" in
310   Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX|Darwin|GNU)
311     ;;
312   IRIX*)
313     TARGET_OS=IRIX
314     ;;
315   HP-UX*)
316     TARGET_OS=HP-UX
317     ;;
318   [cC][yY][gG][wW][iI][nN]*)
319     TARGET_OS=CYGWIN
320     ;;
321   *)
322     TARGET_OS="$TARGET_OS-UNKNOWN"
323     ;;
324   esac
325
326 # find source path
327 # XXX: we assume an absolute path is given when launching configure, 
328 # except in './configure' case.
329 source_path="`echo $0 | sed -e 's#/configure##'`"
330 source_path_used="yes"
331 if test -z "$source_path" -o "$source_path" = "." ; then
332     source_path=`pwd`
333     source_path_used="no"
334 fi
335
336 for opt do
337   case "$opt" in
338   --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
339   ;;
340   --mandir=*) mandir=`echo $opt | cut -d '=' -f 2`
341   ;;
342   --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
343   ;;
344   --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
345   ;;
346   --cc=*) cc=`echo $opt | cut -d '=' -f 2`
347   ;;
348   --make=*) make=`echo $opt | cut -d '=' -f 2`
349   ;;
350   --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
351   ;;
352   --extra-ldflags=*) LDFLAGS=${opt#--extra-ldflags=}
353   ;;
354   --extra-libs=*) extralibs=${opt#--extra-libs=}
355   ;;
356   --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
357   ;;
358   --tune=*) tune=`echo $opt | cut -d '=' -f 2`
359   ;;
360   --powerpc-perf-enable) powerpc_perf="yes"
361   ;;
362   --disable-mmx) mmx="no"
363   ;;
364   --disable-altivec) altivec="no"
365   ;;
366   --enable-gprof) gprof="yes"
367   ;;
368   --disable-v4l) v4l="no"
369   ;;
370   --disable-audio-oss) audio_oss="no"
371   ;;
372   --disable-audio-beos) audio_beos="no"
373   ;;
374   --disable-dv1394) dv1394="no"
375   ;;
376   --disable-network) network="no"; ffserver="no"
377   ;;
378   --disable-zlib) zlib="no"
379   ;;
380   --enable-a52) a52="yes"
381   ;;
382   --enable-a52bin) a52bin="yes" ; extralibs="$ldl $extralibs"
383   ;;
384   --enable-pp) pp="yes"
385   ;;
386   --enable-shared-pp) shared_pp="yes"
387   ;;
388   --enable-mp3lame) mp3lame="yes"
389   ;;
390   --enable-vorbis) vorbis="yes"
391   ;;
392   --enable-faad) faad="yes"
393   ;;
394   --enable-faadbin) faadbin="yes"
395   ;;
396   --enable-faac) faac="yes"
397   ;;
398   --disable-vhook) vhook="no"
399   ;;
400   --disable-simple_idct) simpleidct="no"
401   ;;
402   --enable-mingw32) mingw32="yes"
403   ;;
404   --enable-shared) lshared="yes"
405   ;;
406   --disable-debug) debug="no"
407   ;;
408   --disable-opts) optimize="no"
409   ;;
410   --disable-mpegaudio-hp) mpegaudio_hp="no"
411   ;;
412   --disable-ffserver) ffserver="no"
413   ;;
414   --disable-ffplay) ffplay="no"
415   ;;
416   --disable-risky) risky="no"
417   ;;
418   --enable-small) optimize="small"
419   ;;
420   --enable-amr_nb) amr_nb="yes"
421   ;;
422   --enable-amr_nb-fixed) amr_nb_fixed="yes"
423   ;;
424   --enable-amr_wb) amr_wb="yes"
425   ;; 
426   --enable-sunmlib) sunmlib="yes"
427   ;;
428   --enable-pthreads) pthreads="yes"
429   ;;
430   --enable-gpl) gpl="yes"
431   ;;
432   --enable-memalign-hack) memalignhack="yes"
433   ;;
434   esac
435 done
436
437 if test "$gpl" != "yes"; then
438     if test "$pp" != "no" -o "$shared_pp" != "no"; then
439         echo "The Postprocessing code is under GPL and --enable-gpl is not specified"
440         fail="yes"
441     fi
442
443     if test "$a52" != "no" -o "$a52bin" != "no"; then
444         echo "liba52 is under GPL and --enable-gpl is not specified"
445         fail="yes"
446     fi
447     
448     if test "$faad" != "no" -o "$faadbin" != "no"; then
449         cat > $TMPC << EOF
450             #include <faad.h>
451             int main( void ) { return 0; }
452 EOF
453     
454         if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
455             cat > $TMPC << EOF
456                 #include <faad.h>
457                 #ifndef FAAD2_VERSION
458                 ok faad1
459                 #endif
460                 int main( void ) { return 0; }
461 EOF
462             if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
463                 echo "faad2 is under GPL and --enable-gpl is not specified"
464                 fail="yes"
465             fi
466         else
467             faad="no"
468             faadbin="no"
469             echo "faad test failed"
470         fi
471     fi
472    
473
474     if test "$fail" = "yes"; then
475         exit 1
476     fi
477 fi
478
479 # compute mmx state
480 if test $mmx = "default"; then
481     if test $cpu = "x86"; then
482         mmx="yes"
483     else
484         mmx="no"
485     fi
486 fi
487
488 #Darwin CC versions
489 needmdynamicnopic="no"
490 if test $targetos = Darwin; then
491     if test -n "`$cc -v 2>&1 | grep xlc`"; then
492         CFLAGS="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
493     else
494         gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
495         case "$gcc_version" in
496             *2.95*) 
497                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
498                 ;;
499             *3.*)
500                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare"
501                 if test "$lshared" = no; then
502                    needmdynamicnopic="yes"
503                 fi
504                 ;;
505             *)
506                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
507                 if test "$lshared" = no; then
508                    needmdynamicnopic="yes"
509                 fi
510                 ;;
511         esac
512     fi
513 fi
514
515 # Can only do AltiVec on PowerPC
516 if test $altivec = "default"; then
517     if test $cpu = "powerpc"; then
518         altivec="yes"
519     else
520         altivec="no"
521     fi
522 fi
523
524 # Add processor-specific flags
525 TUNECPU="generic"
526 POWERPCMODE="32bits"
527 if test $tune != "generic"; then
528     case $tune in
529         601|ppc601|PowerPC601)
530             CFLAGS="$CFLAGS -mcpu=601"
531             if test $altivec = "yes"; then
532                 echo "WARNING: tuning for PPC601 but altivec enabled !";
533             fi
534             TUNECPU=ppc601
535         ;;
536         603*|ppc603*|PowerPC603*)
537             CFLAGS="$CFLAGS -mcpu=603"
538             if test $altivec = "yes"; then
539                 echo "WARNING: tuning for PPC603 but altivec enabled !";
540             fi
541             TUNECPU=ppc603
542         ;;
543         604*|ppc604*|PowerPC604*)
544             CFLAGS="$CFLAGS -mcpu=604"
545             if test $altivec = "yes"; then
546                 echo "WARNING: tuning for PPC604 but altivec enabled !";
547             fi
548             TUNECPU=ppc604
549         ;;
550         G3|g3|75*|ppc75*|PowerPC75*)
551             CFLAGS="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt"
552             if test $altivec = "yes"; then
553                 echo "WARNING: tuning for PPC75x but altivec enabled !";
554             fi
555             TUNECPU=ppc750
556         ;;
557         G4|g4|745*|ppc745*|PowerPC745*)
558             CFLAGS="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt"
559             if test $altivec = "no"; then
560                 echo "WARNING: tuning for PPC745x but altivec disabled !";
561             fi
562             TUNECPU=ppc7450
563         ;;
564         74*|ppc74*|PowerPC74*)
565             CFLAGS="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt"
566             if test $altivec = "no"; then
567                 echo "WARNING: tuning for PPC74xx but altivec disabled !";
568             fi
569             TUNECPU=ppc7400
570         ;;
571         G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
572             CFLAGS="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64"
573             if test $altivec = "no"; then
574                 echo "WARNING: tuning for PPC970 but altivec disabled !";
575             fi
576             TUNECPU=ppc970
577             POWERPCMODE="64bits"
578         ;;
579         *)
580         echo "WARNING: unknown CPU "$tune", ignored"
581         ;;
582     esac
583 fi
584
585 # AltiVec flags: The FSF version of GCC differs from the Apple version 
586 if test $cpu = "powerpc"; then
587     if test $altivec = "yes"; then
588         if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then
589             CFLAGS="$CFLAGS -faltivec"
590         else
591             CFLAGS="$CFLAGS -maltivec -mabi=altivec"
592         fi
593     fi
594 fi
595
596 # See if we have <altivec.h>
597 cat > $TMPC << EOF
598 #include <altivec.h>
599 int main( void ) { return 0; }
600 EOF
601
602 _altivec_h="no"
603 if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
604 _altivec_h="yes"
605 fi
606
607 # See does our compiler support Motorola AltiVec C API
608 if test $altivec = "yes"; then
609 if test $_altivec_h = "yes"; then
610 cat > $TMPC << EOF
611 #include <altivec.h>
612 int main(void) {
613     vector signed int v1, v2, v3;
614     v1 = vec_add(v2,v3);
615     return 0;
616 }
617 EOF
618 else
619 cat > $TMPC << EOF
620 int main(void) {
621     vector signed int v1, v2, v3;
622     v1 = vec_add(v2,v3);
623     return 0;
624 }
625 EOF
626 fi
627 $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null || altivec="no"
628 fi
629
630 # Can only do mmi on mips
631 if test $mmi = "default"; then
632     if test $cpu = "mips"; then
633         mmi="yes"
634     else
635         mmi="no"
636     fi
637 fi
638
639 # See does our compiler support mmi
640 if test $mmi = "yes"; then
641 cat > $TMPC << EOF
642 int main(void) {
643     __asm__ ("lq \$2, 0(\$2)");
644     return 0;
645 }
646 EOF
647 $cc -o $TMPE $TMPC 2> /dev/null || mmi="no"
648 fi
649
650 if test "$mingw32" = "yes" ; then
651     v4l="no"
652     audio_oss="no"
653     dv1394="no"
654     ffserver="no"
655     network="no"
656     LIBPREF=""
657     LIBSUF=".lib"
658     SLIBPREF=""
659     SLIBSUF=".dll"
660     EXESUF=".exe"
661     prefix="/c/Program Files/FFmpeg"
662     bindir="$prefix"
663 fi
664
665 cc="${cross_prefix}${cc}"
666 ar="${cross_prefix}${ar}"
667 ranlib="${cross_prefix}${ranlib}"
668 strip="${cross_prefix}${strip}"
669
670 if test -z "$cross_prefix" ; then
671
672 # ---
673 # big/little endian test
674 cat > $TMPC << EOF
675 #include <inttypes.h>
676 int main(int argc, char ** argv){
677         volatile uint32_t i=0x01234567;
678         return (*((uint8_t*)(&i))) == 0x67;
679 }
680 EOF
681
682 if $cc -o $TMPE $TMPC 2>/dev/null ; then
683 $TMPE && bigendian="yes"
684 else
685 echo big/little test failed
686 fi
687
688 else
689
690 # if cross compiling, cannot launch a program, so make a static guess
691 if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then
692     bigendian="yes"
693 fi
694
695 fi
696
697 # ---
698 # *inttypes.h* test
699 cat > $TMPC << EOF
700 #include <inttypes.h>
701 int main(int argc, char ** argv){
702     return 0;
703 }
704 EOF
705
706 $cc -o $TMPE $TMPC 2>/dev/null || inttypes="no"
707
708 # ---
709 # *int_fast* test
710 cat > $TMPC << EOF
711 #include <inttypes.h>
712 int main(int argc, char ** argv){
713         volatile uint_fast64_t i=0x01234567;
714         return 0;
715 }
716 EOF
717
718 $cc -o $TMPE $TMPC 2>/dev/null || emu_fast_int="yes"
719
720 # ---
721 # check availability of some header files
722
723 cat > $TMPC << EOF
724 #include <malloc.h>
725 int main( void ) { return 0; }
726 EOF
727
728 _memalign=no
729 _malloc_h=no
730 if $cc -o $TMPE $TMPC 2> /dev/null ; then
731 _malloc_h=yes
732 _memalign=yes
733 # check for memalign - atmos
734 cat > $TMPC << EOF
735 #include <malloc.h>
736 int main ( void ) {
737 char *string = NULL;
738 string = memalign(64, sizeof(char));
739 return 0;
740 }
741 EOF
742 $cc -o $TMPE $TMPC 2> /dev/null || _memalign=no
743 fi
744
745 cat > $TMPC << EOF
746 #include <time.h>
747 int main( void ) { localtime_r(NULL, NULL); }
748 EOF
749
750 localtime_r=no
751 if $cc -o $TMPE $TMPC 2> /dev/null ; then
752   localtime_r=yes
753 fi
754
755 if test "$zlib" = "yes"; then
756 # check for zlib - mmu_man
757 cat > $TMPC << EOF
758 #include <zlib.h>
759 int main ( void ) {
760 if (zlibVersion() != ZLIB_VERSION)
761    puts("zlib version differs !!!");
762    return 1;
763 return 0;
764 }
765 EOF
766 $cc $CFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no"
767 # $TMPE 2> /dev/null > /dev/null || zlib="no"
768 # XXX: more tests needed - runtime test
769 fi
770 if test "$zlib" = "yes"; then
771 extralibs="$extralibs -lz"
772 fi
773
774 # test for lrintf in math.h
775 cat > $TMPC << EOF
776 #define _ISOC9X_SOURCE  1
777 #include <math.h>
778 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
779 EOF
780
781 have_lrintf="no"
782 if $cc $extralibs -o $TMPE $TMPC 2> /dev/null ; then
783   have_lrintf="yes"
784   $TMPE 2> /dev/null > /dev/null || have_lrintf="no"
785 fi
786
787 _restrict=
788 for restrict_keyword in restrict __restrict__ __restrict; do
789   echo "void foo(char * $restrict_keyword p);" > $TMPC
790   if $cc -c -o $TMPO $TMPC 2> /dev/null; then
791     _restrict=$restrict_keyword
792     break;
793   fi
794 done
795
796 # test gcc version to see if vector builtins can be used
797 # currently only used on i386 for MMX builtins
798 cat > $TMPC << EOF
799 int main(void) { 
800 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
801 return 0;
802 #else
803 #error no vector builtins
804 #endif
805 }
806 EOF
807
808 builtin_vector=no
809 if $cc -o $TMPO $TMPC 2> /dev/null ; then
810   builtin_vector=yes
811 fi
812
813 # dlopen/dlfcn.h probing
814
815 cat > $TMPC << EOF
816 #include <dlfcn.h>
817 int main( void ) { return (int) dlopen("foo", 0); }
818 EOF
819
820 ldl=-ldl
821
822 if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
823 dlfcn=yes
824 dlopen=yes
825 fi
826
827 if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then
828 dlfcn=yes
829 dlopen=yes
830 ldl=""
831 fi
832
833 cat > $TMPC << EOF
834 int main( void ) { return (int) dlopen("foo", 0); }
835 EOF
836
837 if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1  ; then
838 dlopen=yes
839 fi
840
841 if $cc -o $TMPE $TMPC > /dev/null 2>&1  ; then
842 dlopen=yes
843 ldl=""
844 fi
845
846 if test "$vhook" = "default" ; then
847   vhook="$dlopen"
848 fi
849
850 ##########################################
851 # imlib probe
852
853 cat > $TMPC << EOF
854 #include <X11/Xlib.h>
855 #include <Imlib2.h>
856 int main( void ) { return (int) imlib_load_font("foo"); }
857 EOF
858
859 imlib2=no
860 if $cc -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1  ; then
861 imlib2=yes
862 fi
863
864 ##########################################
865 # freetype probe
866
867 cat > $TMPC << EOF
868 #include <ft2build.h>
869 int main( void ) { return (int) FT_Init_FreeType(0); }
870 EOF
871
872 freetype2=no
873 if test "x$targetos" != "xBeOS" && test "$os2" != "yes"; then
874   if freetype-config --version >/dev/null 2>&1 ; then
875     if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs`  > /dev/null 2>&1 ; then
876       freetype2=yes
877     fi
878   fi
879 fi
880
881 ##########################################
882 # SDL probe
883
884 cat > $TMPC << EOF
885 #include <SDL.h>
886 #undef main /* We don't want SDL to override our main() */
887 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
888 EOF
889
890 sdl_too_old=no
891 sdl=no
892 if sdl-config --version >/dev/null 2>&1 ; then
893 if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs`  > /dev/null 2>&1  ; then
894 _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
895 if test "$_sdlversion" -lt 121 ; then
896 sdl_too_old=yes
897 else
898 sdl=yes
899 fi
900 fi
901 fi
902
903 case "`$cc -v 2>&1 | grep version`" in
904     *gcc*)
905         CFLAGS="-Wall $CFLAGS"
906         ;;
907     *)
908         ;;
909 esac
910
911 if test "$sdl" = "no" ; then
912    ffplay=no
913 fi
914
915 if test "$debug" = "yes"; then
916         CFLAGS="-g $CFLAGS"
917 fi
918
919 if test "$optimize" = "small"; then
920 #  CFLAGS=${CFLAGS//-O3/-Os}
921   CFLAGS="$CFLAGS -Os"
922 fi
923
924 if test "$optimize" = "yes"; then
925     if test -n "`$cc -v 2>&1 | grep xlc`"; then
926         CFLAGS="$CFLAGS -O5"
927         LDFLAGS="$LDFLAGS -O5"
928     else
929         CFLAGS="-O3 $CFLAGS"
930     fi
931 fi
932
933 if test x"$bindir" = x""; then
934 bindir="${prefix}/bin"
935 fi
936
937 if test x"$mandir" = x""; then
938 mandir="${prefix}/man"
939 fi
940
941 echo "Install prefix   $prefix"
942 echo "Source path      $source_path"
943 echo "C compiler       $cc"
944 echo "make             $make"
945 echo "CPU              $cpu ($tune)"
946 echo "Big Endian       $bigendian"
947 echo "inttypes.h       $inttypes"
948 echo "broken inttypes.h $emu_fast_int"
949 if test $cpu = "x86"; then
950 echo "MMX enabled      $mmx"
951 echo "Vector Builtins  $builtin_vector"
952 fi
953 if test $cpu = "mips"; then
954 echo "MMI enabled      $mmi"
955 fi
956 if test $cpu = "powerpc"; then
957 echo "AltiVec enabled  $altivec"
958 fi
959 echo "gprof enabled    $gprof"
960 echo "zlib enabled     $zlib"
961 echo "mp3lame enabled  $mp3lame"
962 echo "vorbis enabled   $vorbis"
963 echo "faad enabled     $faad"
964 echo "faadbin enabled  $faadbin"
965 echo "faac enabled     $faac"
966 echo "a52 support      $a52"
967 echo "a52 dlopened     $a52bin"
968 echo "pp support       $pp"
969 echo "debug symbols    $debug"
970 echo "optimize         $optimize"
971 echo "shared pp        $shared_pp"
972 echo "Video hooking    $vhook"
973 echo "SDL support      $sdl"
974 if test $sdl_too_old = "yes"; then
975 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
976 fi
977 echo "risky / patent encumbered codecs $risky"
978
979 if test "$vhook" = "yes" ; then
980 echo "Imlib2 support   $imlib2"
981 echo "freetype support $freetype2"
982 fi
983 echo "Sun medialib support"  $sunmlib
984 echo "pthreads support"      $pthreads
985 echo "AMR-NB float support"  $amr_nb
986 echo "AMR-NB fixed support"  $amr_nb_fixed
987 echo "AMR-WB float support"  $amr_wb
988 if test "$gpl" = "no" ; then
989 echo "License: LGPL"
990 else
991 echo "License: GPL"
992 fi
993
994 echo "Creating config.mak and config.h"
995
996 echo "# Automatically generated by configure - do not modify" > config.mak
997 echo "/* Automatically generated by configure - do not modify */" > $TMPH
998
999 echo "prefix=$prefix" >> config.mak
1000 echo "bindir=$bindir" >> config.mak
1001 echo "mandir=$mandir" >> config.mak
1002 echo "MAKE=$make" >> config.mak
1003 echo "CC=$cc" >> config.mak
1004 echo "AR=$ar" >> config.mak
1005 echo "RANLIB=$ranlib" >> config.mak
1006 echo "STRIP=$strip" >> config.mak
1007
1008 # SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic.  Used when building 
1009 # shared modules on OS/X (vhook/Makefile).
1010 SHCFLAGS=$CFLAGS
1011 if test "$needmdynamicnopic" = yes; then
1012    CFLAGS="$CFLAGS -mdynamic-no-pic"
1013 fi
1014
1015 echo "OPTFLAGS=$CFLAGS" >> config.mak
1016 echo "SHCFLAGS=$SHCFLAGS">>config.mak
1017 echo "LDFLAGS=$LDFLAGS" >> config.mak
1018 echo "FFSLDFLAGS=$FFSLDFLAGS" >> config.mak
1019 echo "SHFLAGS=$SHFLAGS" >> config.mak
1020 echo "LIBPREF=$LIBPREF" >> config.mak
1021 echo "LIBSUF=$LIBSUF" >> config.mak
1022 echo "SLIBPREF=$SLIBPREF" >> config.mak
1023 echo "SLIBSUF=$SLIBSUF" >> config.mak
1024 echo "EXESUF=$EXESUF" >> config.mak
1025 echo "TARGET_OS=$TARGET_OS" >> config.mak
1026 if test "$cpu" = "x86" ; then
1027   echo "TARGET_ARCH_X86=yes" >> config.mak
1028   echo "#define ARCH_X86 1" >> $TMPH
1029 elif test "$cpu" = "armv4l" ; then
1030   echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
1031   echo "#define ARCH_ARMV4L 1" >> $TMPH
1032 elif test "$cpu" = "alpha" ; then
1033   echo "TARGET_ARCH_ALPHA=yes" >> config.mak
1034   echo "#define ARCH_ALPHA 1" >> $TMPH
1035 elif test "$cpu" = "sparc64" ; then
1036   echo "TARGET_ARCH_SPARC64=yes" >> config.mak
1037   echo "#define ARCH_SPARC64 1" >> $TMPH
1038   echo "TARGET_ARCH_SPARC=yes" >> config.mak
1039   echo "#define ARCH_SPARC 1" >> $TMPH
1040 elif test "$cpu" = "sparc" ; then
1041   echo "TARGET_ARCH_SPARC=yes" >> config.mak
1042   echo "#define ARCH_SPARC 1" >> $TMPH
1043 elif test "$cpu" = "powerpc" ; then
1044   echo "TARGET_ARCH_POWERPC=yes" >> config.mak
1045   echo "#define ARCH_POWERPC 1" >> $TMPH
1046   if test $POWERPCMODE = "32bits"; then
1047     echo "#define POWERPC_MODE_32BITS 1" >> $TMPH
1048   else
1049     echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1050   fi
1051   if test "$powerpc_perf" = "yes"; then
1052     echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH
1053   fi
1054 elif test "$cpu" = "mips" ; then
1055   echo "TARGET_ARCH_MIPS=yes" >> config.mak
1056   echo "#define ARCH_MIPS 1" >> $TMPH
1057 elif test "$cpu" = "sh4" ; then
1058   echo "TARGET_ARCH_SH4=yes" >> config.mak
1059   echo "#define ARCH_SH4 1" >> $TMPH
1060 fi
1061 echo "#define TUNECPU $TUNECPU" >> $TMPH
1062 if test "$bigendian" = "yes" ; then
1063   echo "WORDS_BIGENDIAN=yes" >> config.mak
1064   echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1065 fi
1066 if test "$inttypes" != "yes" ; then
1067   echo "#define EMULATE_INTTYPES 1" >> $TMPH
1068 fi
1069 if test "$emu_fast_int" = "yes" ; then
1070   echo "#define EMULATE_FAST_INT 1" >> $TMPH
1071 fi
1072 if test "$mmx" = "yes" ; then
1073   echo "TARGET_MMX=yes" >> config.mak
1074   echo "#define HAVE_MMX 1" >> $TMPH
1075   echo "#define __CPU__ 586" >> $TMPH
1076 fi
1077 if test "$builtin_vector" = "yes" ; then
1078   echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak
1079   echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH
1080 fi
1081 if test "$mmi" = "yes" ; then
1082   echo "TARGET_MMI=yes" >> config.mak
1083   echo "#define HAVE_MMI 1" >> $TMPH
1084 fi
1085 if test "$altivec" = "yes" ; then
1086   echo "TARGET_ALTIVEC=yes" >> config.mak
1087   echo "#define HAVE_ALTIVEC 1" >> $TMPH
1088   echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH
1089   echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH
1090   if test "$_altivec_h" = "yes" ; then
1091     echo "#define HAVE_ALTIVEC_H 1" >> $TMPH
1092   else
1093     echo "#undef HAVE_ALTIVEC_H" >> $TMPH
1094   fi
1095 fi
1096 if test "$gprof" = "yes" ; then
1097   echo "TARGET_GPROF=yes" >> config.mak
1098   echo "#define HAVE_GPROF 1" >> $TMPH
1099 fi
1100 if test "$localtime_r" = "yes" ; then
1101   echo "#define HAVE_LOCALTIME_R 1" >> $TMPH
1102 fi
1103 if test "$imlib2" = "yes" ; then
1104   echo "HAVE_IMLIB2=yes" >> config.mak
1105 fi
1106 if test "$freetype2" = "yes" ; then
1107   echo "HAVE_FREETYPE2=yes" >> config.mak
1108 fi
1109 if test "$sunmlib" = "yes" ; then
1110   echo "HAVE_MLIB=yes" >> config.mak
1111   echo "#define HAVE_MLIB 1" >> $TMPH
1112   extralibs="$extralibs -lmlib"
1113 fi
1114 if test "$pthreads" = "yes" ; then
1115   echo "HAVE_PTHREADS=yes" >> config.mak
1116   echo "#define HAVE_PTHREADS 1" >> $TMPH
1117   if test $targetos != FreeBSD; then
1118      extralibs="$extralibs -lpthread"
1119   fi
1120 fi
1121 if test "$sdl" = "yes" ; then
1122   echo "CONFIG_SDL=yes" >> config.mak
1123   echo "SDL_LIBS=`sdl-config --libs`" >> config.mak
1124   echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak
1125 fi
1126 if test "$have_lrintf" = "yes" ; then
1127   echo "#define HAVE_LRINTF 1" >> $TMPH
1128 fi
1129 if test "$vhook" = "yes" ; then
1130   echo "BUILD_VHOOK=yes" >> config.mak
1131   echo "#define HAVE_VHOOK 1" >> $TMPH
1132   extralibs="$extralibs $ldl"
1133 fi
1134 if test "$lshared" = "yes" ; then
1135   echo "BUILD_SHARED=yes" >> config.mak
1136   echo "PIC=-fPIC" >> config.mak
1137 fi
1138 echo "EXTRALIBS=$extralibs" >> config.mak
1139 version=`grep '#define FFMPEG_VERSION ' $source_path/libavcodec/avcodec.h |
1140  cut -d '"' -f 2`
1141 echo "VERSION=$version" >>config.mak
1142 # if you do not want to use encoders, disable that.
1143 echo "#define CONFIG_ENCODERS 1" >> $TMPH
1144 echo "CONFIG_ENCODERS=yes" >> config.mak
1145
1146 # if you do not want to use decoders, disable that.
1147 echo "#define CONFIG_DECODERS 1" >> $TMPH
1148 echo "CONFIG_DECODERS=yes" >> config.mak
1149
1150 # AC3
1151 if test "$a52" = "yes" ; then
1152   echo "#define CONFIG_AC3 1" >> $TMPH
1153   echo "CONFIG_AC3=yes" >> config.mak
1154
1155   if test "$a52bin" = "yes" ; then
1156     echo "#define CONFIG_A52BIN 1" >> $TMPH
1157     echo "CONFIG_A52BIN=yes" >> config.mak
1158   fi
1159 fi
1160
1161 # PP
1162 if test "$pp" = "yes" ; then
1163   echo "#define CONFIG_PP 1" >> $TMPH
1164   echo "CONFIG_PP=yes" >> config.mak
1165
1166   if test "$shared_pp" = "yes" ; then
1167     echo "#define SHARED_PP 1" >> $TMPH
1168     echo "SHARED_PP=yes" >> config.mak
1169   fi
1170 fi
1171
1172 # mpeg audio high precision mode
1173 if test "$mpegaudio_hp" = "yes" ; then
1174   echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH
1175 fi
1176
1177 if test "$v4l" = "yes" ; then
1178   echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH
1179   echo "CONFIG_VIDEO4LINUX=yes" >> config.mak
1180 fi
1181
1182 if test "$dv1394" = "yes" ; then
1183   echo "#define CONFIG_DV1394 1" >> $TMPH
1184   echo "CONFIG_DV1394=yes" >> config.mak
1185 fi
1186
1187 if test "$dlopen" = "yes" ; then
1188   echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH
1189 fi
1190
1191 if test "$dlfcn" = "yes" ; then
1192   echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH
1193 fi
1194
1195 if test "$audio_oss" = "yes" ; then
1196   echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH
1197   echo "CONFIG_AUDIO_OSS=yes" >> config.mak
1198 fi
1199
1200 if test "$audio_beos" = "yes" ; then
1201   echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH
1202   echo "CONFIG_AUDIO_BEOS=yes" >> config.mak
1203 fi
1204
1205 if test "$network" = "yes" ; then
1206   echo "#define CONFIG_NETWORK 1" >> $TMPH
1207   echo "CONFIG_NETWORK=yes" >> config.mak
1208 fi
1209
1210 if test "$zlib" = "yes" ; then
1211   echo "#define CONFIG_ZLIB 1" >> $TMPH
1212   echo "CONFIG_ZLIB=yes" >> config.mak
1213 fi
1214
1215 if test "$mp3lame" = "yes" ; then
1216   echo "#define CONFIG_MP3LAME 1" >> $TMPH
1217   echo "CONFIG_MP3LAME=yes" >> config.mak
1218 fi
1219
1220 if test "$vorbis" = "yes" ; then
1221   echo "#define CONFIG_VORBIS 1" >> $TMPH
1222   echo "CONFIG_VORBIS=yes" >> config.mak
1223 fi
1224
1225 if test "$faad" = "yes" ; then
1226   echo "#define CONFIG_FAAD 1" >> $TMPH
1227   echo "CONFIG_FAAD=yes" >> config.mak
1228 fi
1229
1230 if test "$faadbin" = "yes" ; then
1231   echo "#define CONFIG_FAADBIN 1" >> $TMPH
1232   echo "CONFIG_FAADBIN=yes" >> config.mak
1233 fi
1234
1235 if test "$faac" = "yes" ; then
1236   echo "#define CONFIG_FAAC 1" >> $TMPH
1237   echo "CONFIG_FAAC=yes" >> config.mak
1238 fi
1239
1240 if test "$mingw32" = "yes" ; then
1241   echo "#define CONFIG_WIN32 1" >> $TMPH
1242   echo "CONFIG_WIN32=yes" >> config.mak
1243   echo "HAVE_W32THREADS=yes" >> config.mak
1244   echo "#define HAVE_W32THREADS 1" >> $TMPH
1245   echo "#ifndef __MINGW32__" >> $TMPH
1246   echo "#define __MINGW32__ 1" >> $TMPH
1247   echo "#endif" >> $TMPH
1248 fi
1249
1250 if test "$os2" = "yes" ; then
1251   echo "#define CONFIG_OS2 1" >> $TMPH
1252   echo "CONFIG_OS2=yes" >> config.mak
1253 fi
1254
1255 if test "$TARGET_OS" = "SunOS" ; then
1256   echo "#define CONFIG_SUNOS 1" >> $TMPH
1257 fi
1258
1259 if test "$darwin" = "yes"; then
1260   echo "#define CONFIG_DARWIN 1"  >> $TMPH
1261   echo "CONFIG_DARWIN=yes" >> config.mak
1262 fi
1263
1264 if test "$_malloc_h" = "yes" ; then
1265   echo "#define HAVE_MALLOC_H 1" >> $TMPH
1266 else
1267   echo "#undef  HAVE_MALLOC_H" >> $TMPH
1268 fi
1269
1270 if test "$_memalign" = "yes" ; then
1271   echo "#define HAVE_MEMALIGN 1" >> $TMPH
1272 else
1273   echo "#undef  HAVE_MEMALIGN" >> $TMPH
1274 fi
1275
1276 if test "$memalignhack" = "yes" ; then
1277   echo "#define MEMALIGN_HACK 1" >> $TMPH
1278 fi
1279
1280
1281 if test "$netserver" = "yes" ; then
1282   echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH
1283   echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak
1284 fi
1285
1286 if test "$need_inet_aton" = "yes" ; then
1287   echo "NEED_INET_ATON=yes" >> config.mak
1288 fi
1289
1290 if test "$simpleidct" = "yes" ; then
1291   echo "#define SIMPLE_IDCT 1" >> $TMPH
1292 fi
1293
1294 if test "$ffserver" = "yes" ; then
1295   echo "#define CONFIG_FFSERVER 1" >> $TMPH
1296   echo "CONFIG_FFSERVER=yes" >> config.mak
1297 fi
1298
1299 if test "$ffplay" = "yes" ; then
1300   echo "CONFIG_FFPLAY=yes" >> config.mak
1301 fi
1302
1303 if test "$risky" = "yes" ; then
1304   echo "#define CONFIG_RISKY 1" >> $TMPH
1305   echo "CONFIG_RISKY=yes" >> config.mak
1306 fi
1307
1308 if test "$gpl" = "yes" ; then
1309   echo "#define CONFIG_GPL 1" >> $TMPH
1310   echo "CONFIG_GPL=yes" >> config.mak
1311 fi
1312
1313 echo "#define restrict $_restrict" >> $TMPH
1314
1315 if test "$optimize" = "small"; then
1316   echo "#define always_inline"  >> $TMPH
1317 fi
1318
1319 # build tree in object directory if source path is different from current one
1320 if test "$source_path_used" = "yes" ; then
1321     DIRS="libavformat libavcodec libavcodec/alpha libavcodec/armv4l libavcodec/i386 \
1322           libavcodec/ppc libavcodec/liba52 libavcodec/mlib libavcodec/libpostproc tests vhook"
1323     FILES="Makefile libavformat/Makefile libavcodec/Makefile libavcodec/libpostproc/Makefile tests/Makefile vhook/Makefile"
1324     for dir in $DIRS ; do
1325             mkdir -p $dir
1326     done
1327     for f in $FILES ; do
1328         ln -sf $source_path/$f $f
1329     done
1330 fi
1331 echo "SRC_PATH=$source_path" >> config.mak
1332
1333 if test "$amr_wb" = "yes" ; then
1334   echo "#define AMR_WB 1" >> $TMPH
1335   echo "AMR_WB=yes" >> config.mak
1336   echo
1337   echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
1338   echo "V5.1.0 from "
1339   echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
1340   echo "and extracted the source to libavcodec/amrwb_float"
1341   echo
1342 fi
1343
1344 if test "$amr_nb" = "yes" ; then
1345   echo "#define AMR_NB 1" >> $TMPH
1346   echo "AMR_NB=yes" >> config.mak
1347   echo
1348 if test "$amr_nb_fixed" = "yes" ; then
1349   echo "AMR_NB_FIXED=yes" >> config.mak
1350   echo "#define AMR_NB_FIXED 1" >> $TMPH
1351   echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 "
1352   echo "REL-5 version 5.1.0 from "
1353   echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-510.zip"
1354   echo "and extracted src to libavcodec/amr"
1355   echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile."
1356   echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO"
1357   echo
1358 else
1359   echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104"
1360   echo "REL-5 V5.1.0 from "
1361   echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-510.zip"
1362   echo "and extracted the source to libavcodec/amr_float"
1363   echo "and if u try this on an alpha, u may need to change Word32 to int in amr/typedef.h"
1364   echo
1365 fi
1366
1367 fi
1368
1369 diff $TMPH config.h >/dev/null 2>&1
1370 if test $? -ne 0 ; then
1371         mv -f $TMPH config.h
1372 else
1373         echo "config.h is unchanged"
1374 fi
1375
1376 rm -f $TMPO $TMPC $TMPE $TMPS $TMPH