summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* Detect PathScale compilerMåns Rullgård2010-07-27
| | | | Originally committed as revision 24552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix sh_quote functionMåns Rullgård2010-07-27
| | | | | | | Non-matching lists start with ! instead of the usual ^ in shell patterns. Originally committed as revision 24550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Chinese AVS encoding via external library libxavsStefan Gehrer2010-07-27
| | | | Originally committed as revision 24533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: create report filesMåns Rullgård2010-07-26
| | | | Originally committed as revision 24529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: extract detailed compiler identificationMåns Rullgård2010-07-26
| | | | Originally committed as revision 24528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-07-26
| | | | Originally committed as revision 24520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pkgconfig_generate check if the library is enabled before toStefano Sabatini2010-07-26
| | | | | | generate the pc files. Originally committed as revision 24519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
| | | | | | | | | | | in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pkgconfig_generate line for libavcore.Stefano Sabatini2010-07-25
| | | | | | libavcore depends on libavutil, and does not require extralibs. Originally committed as revision 24500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libavcore.Stefano Sabatini2010-07-21
| | | | | | | | | | | The new library is meant to contain the core multimedia utilities for FFmpeg, to make them shareable between more libav* libraries. See thread: Subject: [FFmpeg-devel] [RFC] New library for shared non-generic libav* utils Date: Fri, 9 Jul 2010 01:07:40 +0200 Originally committed as revision 24393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make sh_quote() more robustMåns Rullgård2010-07-20
| | | | Originally committed as revision 24376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: create .config file where I intendedMåns Rullgård2010-07-20
| | | | Originally committed as revision 24373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: create .config file in configure to avoid needless rerunsMåns Rullgård2010-07-20
| | | | Originally committed as revision 24372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Collect list of seek tests in configureMåns Rullgård2010-07-20
| | | | Originally committed as revision 24346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix lavfi pixdesc testMåns Rullgård2010-07-19
| | | | | | | | | | | | | | | | | This test verifies the pixdesc code by comparing the output with and without a filter which should have no effect on the image. Since the available pixel formats depend on the byte order of the machine, a simple reference checksum is not possible. The test originally tried to solve this by generating a reference file on the fly. The problem with this is that the test framework expects the reference file in the source tree, and writing to the source tree is not allowed. To avoid complicating the test framework, we instead provide two reference files and select which to use based on the byte order. Originally committed as revision 24330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate list of lavfi tests in configureMåns Rullgård2010-07-19
| | | | Originally committed as revision 24329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependencies for msmpeg4v3 regression testMåns Rullgård2010-07-16
| | | | Originally committed as revision 24261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Nit: fix alphabetical orderVitor Sessak2010-07-16
| | | | Originally committed as revision 24259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix obviously missing dependency of float DCT.Vitor Sessak2010-07-15
| | | | | | Fixes issue 2095. Originally committed as revision 24245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: match regtest ref files more strictlyMåns Rullgård2010-07-12
| | | | | | | Only names consisting of letters, numbers, hyphens, and underscores are allowed. Originally committed as revision 24222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the ADTS header decoder off of the ADTS parser.Alex Converse2010-07-12
| | | | | | | The AAC decoder and ADTS-to-ASC BSF both require the header decoder but not full parsing capabilities. Originally committed as revision 24217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw32: merge checks for mingw-w64 and mingw32-runtime >= 3.15 into oneRamiro Polla2010-07-11
| | | | Originally committed as revision 24204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw32: properly check if vfw capture is supported by the system headersRamiro Polla2010-07-11
| | | | | | | | Remove check for an specific w32api version, checking instead if vfw.h supports vfw capture. The defines in w32api 3.12 were wrong, so this must be accounted for in the check. Originally committed as revision 24203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set fast_unaligned in avconfig.hMåns Rullgård2010-07-10
| | | | Originally committed as revision 24172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw32: avisynth does not need w32api >= 3.13Ramiro Polla2010-07-10
| | | | Originally committed as revision 24165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: properly check for mingw-w64 through installed headers.Ramiro Polla2010-07-10
| | | | | | mingw-w64 can also target 32-bit code. Originally committed as revision 24156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix pcm test depsMåns Rullgård2010-07-08
| | | | | | 10l to me for using non-standard shell syntax Originally committed as revision 24123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move regression test dependencies to configureMåns Rullgård2010-07-08
| | | | | | This allows expressing complex dependencies more easily. Originally committed as revision 24120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add print_enabled() functionMåns Rullgård2010-07-08
| | | | | | | The print_enabled() function prints all elements in a list which are enabled. Originally committed as revision 24119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify some OS-specific flag settingMåns Rullgård2010-07-05
| | | | Originally committed as revision 24060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add missing braces in libvpx checkMåns Rullgård2010-07-03
| | | | Originally committed as revision 24028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a hint about the minimum required version of libvpx (0.9.1)Dominik Mierzejewski2010-07-03
| | | | | | | | when detection fails. Approved by Måns. Originally committed as revision 24027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: enclose library check for librtmp in bracketsRamiro Polla2010-07-03
| | | | | | otherwise it would always fail if librtmp was not enabled. Originally committed as revision 24026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add function check for librtmp, require RTMP_Socket() which was addedStefano Sabatini2010-07-03
| | | | | | | | in version 2.2.f. Avoid a compile-time failure. Originally committed as revision 24024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use __clang_version__ when availableDavid Conrad2010-07-02
| | | | Originally committed as revision 24009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wmavoice depends on mdctAurelien Jacobs2010-07-02
| | | | Originally committed as revision 24000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: improve GNU as checkingMåns Rullgård2010-07-02
| | | | | | | Check for GNU assembler only when asm is enabled. Show a warning for ppc/altivec only, and fail on ARM. Originally committed as revision 23964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: fix dcbzl detection on OSXMåns Rullgård2010-07-01
| | | | Originally committed as revision 23955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -force_cpusubtype_ALL to ASFLAGS on Darwin/PPCMåns Rullgård2010-07-01
| | | | Originally committed as revision 23954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for GNU assembler, use gas-preprocessor on darwinMåns Rullgård2010-07-01
| | | | Originally committed as revision 23953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check whether IBM or Apple PPC assembler syntax is usedMåns Rullgård2010-07-01
| | | | | | | This checks which assembler syntax is supported and defines macros for register names accordingly. Originally committed as revision 23952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudio float decoders depend on dctAurelien Jacobs2010-07-01
| | | | Originally committed as revision 23945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: replace unwarranted gcc bashing with a real explanationMåns Rullgård2010-07-01
| | | | Originally committed as revision 23929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for fcntl()Måns Rullgård2010-06-30
| | | | Originally committed as revision 23902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make --disable-everything soft-disable thingsMåns Rullgård2010-06-28
| | | | | | | This allows explicitly enabled things to _select others with the intended result. Originally committed as revision 23843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make implicit function declarations an errorMåns Rullgård2010-06-27
| | | | Originally committed as revision 23823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove PPC perf counter supportMåns Rullgård2010-06-26
| | | | | | This functionality is better accessed through tools like oprofile. Originally committed as revision 23808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove --enable-gprof flagMåns Rullgård2010-06-26
| | | | | | | | gprof is far too intrusive to be of use as a profile for ffmpeg, and it fails to build in many configurations. Oprofile is a better tool for profiling on Linux. Originally committed as revision 23807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make vp8 select h264dsp and use this to pull in mmx intrapredMåns Rullgård2010-06-25
| | | | Originally committed as revision 23790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove superflous -lm flagsMåns Rullgård2010-06-25
| | | | Originally committed as revision 23781 to svn://svn.ffmpeg.org/ffmpeg/trunk