summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* dv1394 is disabled by default, do not redundantly disable it on Hurd.Diego Biurrun2009-05-25
| | | | Originally committed as revision 18946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Hurd to OS list and disable dv1394 in the Hurd case.Andres Mejia2009-05-25
| | | | | | patch by Andres Mejia, mcitadel gmail com Originally committed as revision 18938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print out more verbose licensing information.Diego Biurrun2009-05-22
| | | | Originally committed as revision 18893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The AC-3 decoder is now LGPL. Exchange the license header and change referencesDiego Biurrun2009-05-19
| | | | | | in the build system and documentation that mark it as GPL. Originally committed as revision 18876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define ARCH_MIPS64 when building for MIPS64Måns Rullgård2009-05-19
| | | | Originally committed as revision 18874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define HAVE_BIGENDIAN as 0 or 1 according to CPU typeMåns Rullgård2009-05-19
| | | | | | | This should replace the inconsistently named and defined WORDS_BIGENDIAN. Originally committed as revision 18873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add some MIPS CPUsMåns Rullgård2009-05-19
| | | | Originally committed as revision 18872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add gnu/kfreebsd to list of recognized operating systems.Andres Mejia2009-05-14
| | | | | | patch by Andres Mejia, mcitadel gmail com Originally committed as revision 18822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix licence check functionMåns Rullgård2009-04-29
| | | | Originally committed as revision 18717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Require --enable-nonfree for turning on libfaac support.Diego Biurrun2009-04-29
| | | | | | libfaac lies about being LGPL, when it really is not. Originally committed as revision 18715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize GPL and nonfree license checks into a common function.Diego Biurrun2009-04-29
| | | | Originally committed as revision 18714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: support Blackfin CPU names with --cpuMåns Rullgård2009-04-22
| | | | Originally committed as revision 18660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: check for x-form asm constraint supportMåns Rullgård2009-04-18
| | | | Originally committed as revision 18606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC asm for AV_RL*()Måns Rullgård2009-04-18
| | | | | | | | | | | | PPC is normally big endian but has special little endian load/store instructions. Using these avoids a separate byteswap. This makes the vorbis decoder about 5% faster. Not much else uses little-endian read/write extensively. GCC generates horrible PPC code for the default AV_[RW]B64 (which uses a packed struct), so we override it with a plain pointer cast. Originally committed as revision 18602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not add -fno-common to CFLAGS on DOS, it is unneeded.Diego Biurrun2009-04-16
| | | | Originally committed as revision 18536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for Decoder_Interface_init() instead of Speech_Decode_Frame_init() whenMartin Storsjö2009-04-15
| | | | | | | trying to enable libamrnb support. The latter function is actually used. patch by Martin Storsjö, martin martin st Originally committed as revision 18526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32, dos: Work around a bug in the GNU toolchain.Ramiro Polla2009-04-13
| | | | | | | | | | | | | | The bug[1] is exposed when gcc decides to put some data in a common section (i.e. data that will be used by more than one object). It will suggest the data to be aligned, but binutils >= 2.19 will fail to properly align it. Thus if the data requires any alignment greater than 4, the application will crash. The workaround prevents gcc from putting data in a common section, instead putting it in a properly aligned section. [1] http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216 Originally committed as revision 18501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a configure check for lzo1x_999_compress() and compile the lzo test programDiego Biurrun2009-04-09
| | | | | | in libavutil when this function is available. Originally committed as revision 18386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Add --enable-runtime-cpudetectRamiro Polla2009-04-08
| | | | Originally committed as revision 18380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement JACK input device.Olivier Guilyardi2009-04-02
| | | | | | | Patch by Olivier Guilyardi list samalyse com. See the thread: "[FFmpeg-devel] [PATCH] libavdevice: JACK demuxer". Originally committed as revision 18322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VA API deps.Gwenole Beauchesne2009-04-02
| | | | Originally committed as revision 18312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add hwaccel configury. This generates CONFIG_<CODEC>_<HWACCEL>_HWACCELGwenole Beauchesne2009-04-02
| | | | | | from registered HW accelerated codecs with REGISTER_HWACCEL(). Originally committed as revision 18311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an empty line in front of configure debug instructions.Diego Biurrun2009-04-02
| | | | | | This makes the actual error message that configure prints be more noticeable. Originally committed as revision 18308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Quote stored configure arguments containing spacesMåns Rullgård2009-03-30
| | | | Originally committed as revision 18252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw32: Restore creation of import libraries. They are still not beingRamiro Polla2009-03-29
| | | | | | installed, but they're good for creating -dev packages. Originally committed as revision 18214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create swscale subdirs for out-of-tree builds.Ramiro Polla2009-03-26
| | | | Originally committed as revision 18191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Group all path variables together in config.mak.Diego Biurrun2009-03-25
| | | | Originally committed as revision 18187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a CONFIG_SWSCALE_ALPHA option for alpha channel scaling (enabled by default)Cédric Schieli2009-03-20
| | | | Originally committed as revision 18075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for VirtualAlloc() so it may be used to allocate executable memory inRamiro Polla2009-03-19
| | | | | | Windows. Originally committed as revision 18050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw32: call lib.exe instead of lib to facilitate running it through wine.Ramiro Polla2009-03-15
| | | | Originally committed as revision 17995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disallow out-of-tree builds with config.h in the source tree.Matthieu Castet2009-03-15
| | | | | | | | A config.h present in the source tree takes precedence over a config.h in the build tree, which can possibly result in an incorrect build. patch by matthieu castet, castet.matthieu free fr Originally committed as revision 17994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Force ebp_available for icc.Carl Eugen Hoyos2009-03-15
| | | | | | | See discussion: http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/86209 Originally committed as revision 17985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all `` by $(), the latter can be nested more easily.Diego Biurrun2009-03-09
| | | | Originally committed as revision 17923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MMX2 check, 'movss' is not an MMX2 instruction, use 'pmaxub' instead.Diego Biurrun2009-03-09
| | | | Originally committed as revision 17922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set AS to $CC by default, override with gcc only when CC is armccMåns Rullgård2009-03-09
| | | | Originally committed as revision 17920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable CONFIG_FASTDIV by defaultMåns Rullgård2009-03-09
| | | | Originally committed as revision 17900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow different executable suffix for host and targetMåns Rullgård2009-03-08
| | | | Originally committed as revision 17885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: fix indentationDiego Biurrun2009-03-07
| | | | Originally committed as revision 17864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of redundant vdpau option, decoders can still be disabled individually.Diego Biurrun2009-03-06
| | | | Originally committed as revision 17855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: detect armcc compiler and enable gcc modeMåns Rullgård2009-03-05
| | | | Originally committed as revision 17829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: check asm support using $asMåns Rullgård2009-03-05
| | | | Originally committed as revision 17828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compile .S files with $(AS), set it in configureMåns Rullgård2009-03-05
| | | | | | | Assembler files using the GNU syntax need to be processed by gcc, whichever compiler is used for C files. Originally committed as revision 17827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the swscale dummy option, most (all?) FATE configs should be updatedReimar Döffinger2009-03-04
| | | | | | to work without it. Originally committed as revision 17809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Alpha: use -g3 with ccc to allow optimisation with debugging symbolsMåns Rullgård2009-03-03
| | | | Originally committed as revision 17793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow --enable-swscale until FATE is updatedMåns Rullgård2009-03-03
| | | | Originally committed as revision 17788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old scaler.Michael Niedermayer2009-03-03
| | | | Originally committed as revision 17786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove deprecated vhook subsystem.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally toDiego Biurrun2009-03-03
| | | | | | CFLAGS. Apparently there are some systems that do not like these definitions. Originally committed as revision 17755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mpeg4aac dependency declaration, the decoder was removed.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: improve temp file creation and cleanupMåns Rullgård2009-03-03
| | | | Originally committed as revision 17752 to svn://svn.ffmpeg.org/ffmpeg/trunk