summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* build: avoid stdin stall with GNU AS probing.Clément Bœsch2013-11-09
| | | | | | | | a758c5e added probing for various tools, such as AS. Unfortunately, GNU AS is reading stdin with -v, and thus configure is stalled with configure arguments such as --as=as. Fixes Ticket #1898.
* Merge commit '0338c396987c82b41d322630ea9712fe5f9561d6'Michael Niedermayer2013-11-08
|\ | | | | | | | | | | | | | | | | | | | | | | * commit '0338c396987c82b41d322630ea9712fe5f9561d6': dsputil: Split off H.263 bits into their own H263DSPContext Conflicts: configure libavcodec/mpegvideo.h libavcodec/mpegvideo_enc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * dsputil: Split off H.263 bits into their own H263DSPContextDiego Biurrun2013-11-08
| |
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-11-05
|\| | | | | | | | | | | | | * qatar/master: configure: Move -Wno-maybe-uninitialized check into gcc section Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Move -Wno-maybe-uninitialized check into gcc sectionDiego Biurrun2013-11-05
| | | | | | | | | | | | As another example of bizarre compiler behavior clang groks the -Wmaybe-uninitialized option, but not -Wno-maybe-uninitialized and spews a warning for every file that gets compiled.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-11-02
|\| | | | | | | | | | | | | | | | | | | | | * qatar/master: Add an HDS live fragmenting muxer Conflicts: Changelog libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Add an HDS live fragmenting muxerMartin Storsjö2013-11-02
| | | | | | | | | | | | | | HDS fragments basically are FLV fragments wrapped in an ISO media mdat atom. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '056fd4fe65e70b4dbca97bcf7faf8b7ce3df993f'Michael Niedermayer2013-11-02
|\| | | | | | | | | | | | | | | | | | | * commit '056fd4fe65e70b4dbca97bcf7faf8b7ce3df993f': configure: Properly check for availability of -Wno-foo warning flags Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Properly check for availability of -Wno-foo warning flagsDiego Biurrun2013-11-01
| | | | | | | | | | | | | | | | | | | | | | | | | | For some weird reason gcc does not check if the -Wno disabling variants of warning flags match existing warning flags. Instead it swallows them silently. That is, unless other warning or error messages are generated, because then - for some even more bizarre reason - a complaint about the unknown disable warning flag is issued along with the error or warning message. Thus to check for the availability of a warning disabling option, one needs to check for the enabling variant instead and then add the disabling variant to CFLAGS.
* | Merge commit '23157d72b565e0228fec97f1eb059d4f8021a260'Michael Niedermayer2013-11-02
|\| | | | | | | | | | | | | * commit '23157d72b565e0228fec97f1eb059d4f8021a260': configure: Split test_cflags function off from check_cflags Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Split test_cflags function off from check_cflagsDiego Biurrun2013-11-01
| | | | | | | | This is useful to test flags without directly adding them to CFLAGS.
| * Add HEVC decoderGuillaume Martres2013-10-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initially written by Guillaume Martres <smarter@ubuntu.com> as a GSoC project. Further contributions by the OpenHEVC project and other developers, namely: Mickaël Raulet <mraulet@insa-rennes.fr> Seppo Tomperi <seppo.tomperi@vtt.fi> Gildas Cocherel <gildas.cocherel@laposte.net> Khaled Jerbi <khaled_jerbi@yahoo.fr> Wassim Hamidouche <wassim.hamidouche@insa-rennes.fr> Vittorio Giovara <vittorio.giovara@gmail.com> Jan Ekström <jeebjp@gmail.com> Anton Khirnov <anton@khirnov.net> Martin Storsjö <martin@martin.st> Luca Barbato <lu_zero@gentoo.org> Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> Reimar Döffinger <Reimar.Doeffinger@gmx.de> Diego Biurrun <diego@biurrun.de> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Merge commit 'e78913052263af80855590659fb0f705e8f13c8a'Michael Niedermayer2013-10-29
|\| | | | | | | | | | | | | * commit 'e78913052263af80855590659fb0f705e8f13c8a': configure: Provide an hardened toolchain option Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Provide an hardened toolchain optionLuca Barbato2013-10-29
| |
* | Merge commit 'dcd3eda6cb8884beeb67ef5eb61b4bb6b01d29ea'Michael Niedermayer2013-10-29
|\| | | | | | | | | | | | | * commit 'dcd3eda6cb8884beeb67ef5eb61b4bb6b01d29ea': configure: Move gcc-only -W option where it belongs Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Move gcc-only -W option where it belongsLuca Barbato2013-10-29
| |
* | Merge commit 'de6061203e2d509579ab110fb1873aade34320f5'Michael Niedermayer2013-10-28
|\| | | | | | | | | | | | | * commit 'de6061203e2d509579ab110fb1873aade34320f5': configure: Disable -Wmaybe-uninitialized by default Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Disable -Wmaybe-uninitialized by defaultLuca Barbato2013-10-28
| | | | | | | | | | It is by definition unreliable and causes pointless noise on valid code.
| * libavutil: x86: Add AVX2 capable CPU detection.Kieran Kunhya2013-10-25
| | | | | | | | | | | | Patch based on x264's AVX2 detection Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * movenc: Add an F4V muxerClément Bœsch2013-10-23
| | | | | | | | | | | | | | | | F4V is Adobe's mp4/iso media variant, with the most significant addition/change being supporting other flash codecs than just aac/h264. Signed-off-by: Martin Storsjö <martin@martin.st>
* | libavfilter/vf_noise: relicense to LGPLPaul B Mahol2013-10-27
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | configure: link with built libs when pc-uninstalled is usedLukasz Marek2013-10-26
| | | | | | | | | | Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Add AVX2 capable CPU detection. Patch based on x264's AVX2 detectionKieran Kunhya2013-10-26
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | configure: abort if threading without atomics is usedMichael Niedermayer2013-10-25
| | | | | | | | | | | | | | | | also provide a list of workarounds to the user Fixes Ticket2363 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavd: add fbdev output deviceLukasz Marek2013-10-24
| | | | | | | | | | Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | make it possible to compile ffmpeg without swscalePaul B Mahol2013-10-21
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | configure: remove \r from cc_ident,俞晓磊2013-10-19
| | | | | | | | | | | | This should fix cygwin + non-cygwin toolchain Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavc: add a HEVC decoder.Guillaume Martres2013-10-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initially written by Guillaume Martres <smarter@ubuntu.com> as a GSoC project. Further contributions by the OpenHEVC project and other developers, namely: Mickaël Raulet <mraulet@insa-rennes.fr> Seppo Tomperi <seppo.tomperi@vtt.fi> Gildas Cocherel <gildas.cocherel@laposte.net> Khaled Jerbi <khaled_jerbi@yahoo.fr> Wassim Hamidouche <wassim.hamidouche@insa-rennes.fr> Vittorio Giovara <vittorio.giovara@gmail.com> Jan Ekström <jeebjp@gmail.com> Anton Khirnov <anton@khirnov.net> Martin Storsjö <martin@martin.st> Luca Barbato <lu_zero@gentoo.org> Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | configure: Warn when inline asm is disabled for ICLMichael Niedermayer2013-10-15
| | | | | | | | | | | | See Ticket3048 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '9e3946aadaef6f7d7ef15c31b5ff1e73d0ba79a1'Michael Niedermayer2013-10-09
|\| | | | | | | | | | | | | | | | | | | | | | | * commit '9e3946aadaef6f7d7ef15c31b5ff1e73d0ba79a1': build: Require yasm 0.8.0 or higher Conflicts: configure If someone wants to continue supporting older yasm/nasm versions, patches are of course welcome! Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: Require yasm 0.8.0 or higherDerek Buitenhuis2013-10-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is in preparation for removing a .rodata kludge which was only required for older YASM versions. The movbe instruction was introduced in 0.8.0, which already had AVX, which was introduced in 0.7.0, and NASM introduced movbe in 2.0.3, which is the same version which introduced AVX support. Also, make the failure message more accurate. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | lavd: pulse audio encoderLukasz Marek2013-10-08
| | | | | | | | | | | | Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'e52567c2954f627d420b30f75f71af2f2e4afe80'Michael Niedermayer2013-10-08
|\| | | | | | | | | | | | | | | | | | | * commit 'e52567c2954f627d420b30f75f71af2f2e4afe80': build: Strip spurious labels Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: Strip spurious labelsLoren Merritt2013-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation of 25cb0c1a involves lots of spurious labels. The effect of keeping those labels around is making debugging harder. Those labels are meaningless, and complicate the disassembly. Also, gdb can't tell the difference between them and function entry points. This new strip command is irrelevant to any usage of Libav that would have used the old fully stripped version, because the old one was for non-debug use. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | configure: filters should select the parts they need not use depsMichael Niedermayer2013-10-06
| | | | | | | | | | | | | | otherwise enabling the filter would not work if the part hasnt been enabled by other means already Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | configure: add --tempprefix optionMichael Niedermayer2013-10-05
| | | | | | | | | | | | With this and ccache configure execution time goes down from 3.9 to 2.4 seconds Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'rbultje/master'Michael Niedermayer2013-10-03
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | * rbultje/master: Full-pixel MC functions. VP9 MC (ssse3) optimizations. Native VP9 decoder. Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | Native VP9 decoder.Ronald S. Bultje2013-10-02
| | | | | | | | | | | | | | | Authors: Ronald S. Bultje <rsbultje gmail com>, Clement Boesch <u pkh me>
* | | Revert "Merge commit '61c31e4ee7ea79a9e74c0476b81244febf17e6d7'" (configure: ↵Michael Niedermayer2013-10-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Properly set zlib dependencies for all components) The reverted commit introduced undefined behavior. undefined in the sense that the evaluation order of the dependencies affects the results Fixes Ticket2920 This reverts commit c32db6adab9942781cc5a23f62abb839a5595a83, reversing changes made to 05f1b4e2ecc4683467669a190e3a53df413de805. Alternative solutions would be to change the dependency solver to handle non trivial dependencies or to enable zlib by default before the dependency solver, this would leave a zlib dependency in the libs though then even when no zlib is needed or used.
* | | configure: fix logic for threads in case of OpenCL is enabled. Fixes ticket ↵Thilo Borgmann2013-10-01
| | | | | | | | | | | | | | | | | | | | | 3004. Signed-off-by: Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | configure: fix build with enable-xmm-clobber-testMichael Niedermayer2013-09-30
|/ / | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'd6d27f3e58e6980bce4a490e7d8cc0f6a84521fe'Michael Niedermayer2013-09-24
|\| | | | | | | | | | | | | * commit 'd6d27f3e58e6980bce4a490e7d8cc0f6a84521fe': configure: Enable -Qansi-alias for icl 14+ Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * configure: Enable -Qansi-alias for icl 14+Alex Smith2013-09-24
| | | | | | | | | | | | | | Qansi-alias worked on 12.x, then caused miscompilation on 13.x, but now works again passing all FATE tests for icl version 14. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | avfilter: add ladspa wrapper filterPaul B Mahol2013-09-22
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavf: add SFTP protocol via libsshLukasz Marek2013-09-21
| | | | | | | | | | Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '09f2581dc5edb3642858d69d9a70b67e249167e9'Michael Niedermayer2013-09-20
|\| | | | | | | | | | | | | | | | | | | * commit '09f2581dc5edb3642858d69d9a70b67e249167e9': msvc/icl: Use __declspec(deprecated) Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * msvc/icl: Use __declspec(deprecated)Alex Smith2013-09-20
| | | | | | | | | | | | | | | | | | | | | | Prior to this on msvc/icl there was no handling of deprecated functions and the deprecated warning was disabled. After enabling there are a number of warnings relating to the CRT and the use of the non-secure versions of several functions. Defining _CRT_SECURE_NO_WARNINGS silences these warnings. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit 'e5d45e028cf4193b562075897e55091779e49f15'Michael Niedermayer2013-09-20
|\| | | | | | | | | | | | | * commit 'e5d45e028cf4193b562075897e55091779e49f15': build: Support cparser Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: Support cparserLuca Barbato2013-09-19
| |
| * Add a WebP decoderJustin Ruggles2013-09-18
| | | | | | | | | | Container and lossy decoding by Aneesh Dogra <aneesh@sugarlabs.org> Lossless decoding by Justin Ruggles <justin.ruggles@gmail.com>