summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* configure: Sort the library listings in the help text alphabeticallyMartin Storsjö2012-06-18
| | | | | | | Only these three libraries were out of order, the rest was already neatly sorted. Signed-off-by: Martin Storsjö <martin@martin.st>
* RTMPT protocol supportSamuel Pitoiset2012-06-17
| | | | | | | | | | This adds two protocols, but one of them is an internal implementation detail just used as an abstraction layer/generalization in the code. The RTMPT protocol implementation uses rtmphttp:// as an alternative to the tcp:// protocol. This allows moving most of the lower level logic out from the higher level generic rtmp code. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: add all filters hardcoded into avconv to avconv_depsAnton Khirnov2012-06-13
|
* lavfi: allow building without swscale.Anton Khirnov2012-06-13
|
* jack: update to new latency range API as the old one has been deprecatedSean McGovern2012-06-13
| | | | | | Fixes Bugzilla #279. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* iac: add missing dependencyKostya Shishkov2012-06-10
|
* mpegtsenc: Support LATM packetization for AACJindrich Makovicka2012-06-03
| | | | | | | | | This adds the avoption mpegts_flags and converts the existing resend_headers option into a flag, keeping the old option as fallback for now. Signed-off-by: Jindrich Makovicka <makovick@gmail.com> Signed-off-by: Martin Storsjö <martin@martin.st>
* mpegtsenc: use AVFormatContext for AAC packetizationJindrich Makovicka2012-06-03
| | | | | | | | This removes the dependency on adts.c internals, and simplifies adding other packetization formats. Signed-off-by: Jindrich Makovicka <makovick@gmail.com> Signed-off-by: Martin Storsjö <martin@martin.st>
* avconv: extend -r to work on any input stream.Anton Khirnov2012-05-29
| | | | This is done by automatically inserting a setpts filter.
* fate: convert codec-regression.sh to makefile rulesMans Rullgard2012-05-29
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove libnut wrapperDiego Biurrun2012-05-21
| | | | libnut is unmaintained and known to be buggy; native NUT code exists.
* fate: change name of FATE samples location environment variableDiego Biurrun2012-05-21
| | | | | | FATE_SAMPLES is now used directly by the Makefiles, which induces the test system to run a test with the value of the environment variable as name. Renaming the environment variable to LIBAV_SAMPLES avoids this problem.
* lavfi: add lavr-based audio resampling filter.Anton Khirnov2012-05-12
|
* configure: Add _XOPEN_SOURCE=600 to Solaris preprocessor flags.Sean McGovern2012-05-10
| | | | | | This is needed to expose some networking APIs. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov2012-05-09
| | | | | | Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
* sctp: Initial tcp-alike sctp support with streamsLuca Barbato2012-05-08
| | | | | Signed-off-by: Jordi Ortiz <nenjordi@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavfi: always enable the scale filter and depend on sws.Anton Khirnov2012-05-06
| | | | | The scale filter is used for internal colorspace conversions, so it must always be present.
* configure: add POWER[5-7] supportSean McGovern2012-05-04
| | | | | | Also merge POWER3 and POWER4 configuration together with the additions. Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: remove malloc_aligned.Ronald S. Bultje2012-05-02
| | | | | | It was to signal that allocations are 16-byte aligned, but AVX requires 32-byte alignment, thus the check is no longer useful (and causes crashes).
* configure: add libavresample to rpathSean McGovern2012-04-26
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: icc: silence some warningsMans Rullgard2012-04-25
| | | | | | | | | This disables the warning "external declaration in primary source file" which is issued when a prototype for an extern function is found in a .c file rather than a header file. We have such prototypes for asm functions where a separate header file would be pointless. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add libavresampleJustin Ruggles2012-04-24
| | | | | This is a new library for audio sample format, channel layout, and sample rate conversion.
* Remove libdirac decoder.Diego Biurrun2012-04-23
| | | | libschroedinger is the preferred way to decode Dirac video.
* configure: detect PGI compiler and set suitable flagsMans Rullgard2012-04-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: escape colons in values written to config.fateMans Rullgard2012-04-13
| | | | | | | The fields in config.fate are colon-separated so any colons within the fields should be escaped to prevent confusion. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avconv: drop support for building without libavfilter.Anton Khirnov2012-04-06
| | | | | | | Since the mandatory memcpy in vsrc_buffer has been eliminated, there shouldn't be any significant reason to build without lavfi anymore. This will make upcoming support for complex filtergraphs easier to do.
* configure: add dl to frei0r extralibs.Anton Khirnov2012-04-05
|
* configure: Check for a different SDL functionMartin Storsjö2012-03-29
| | | | | | | | | | | | | This one is available both in SDL 1.2 and in 1.3 (which is the current version available e.g. in macports), while 1.3 doesn't contain SDL_Linked_Version(). The current check for SDL_Linked_Version() (available since SDL 1.2.13) was added in 8f1b06c8, because including the headers for SDL_Init() redirects the main() function, requiring the main function signature to match the one of SDL_main (including argc/argv). Signed-off-by: Martin Storsjö <martin@martin.st>
* build: fix RALF decoder standalone compilation, which depends on Golomb codeDiego Biurrun2012-03-27
|
* configure: Drop stray duplicate entry for --disable-fft from help output.Diego Biurrun2012-03-27
|
* build: drop some unnecessary dependencies from the H.264 parserDiego Biurrun2012-03-26
|
* libavutil: Remove broken and pointless lzo test program.Diego Biurrun2012-03-26
|
* x86: conditionally compile H.264 QPEL optimizationsDiego Biurrun2012-03-25
|
* configure: die if x11grab dependencies are unavailableJosh Allmann2012-03-23
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* configure: Restructure help output.Diego Biurrun2012-03-21
| | | | | Break some of the longer sections into smaller sensible pieces; make some option descriptions and option ordering more consistent.
* configure: Internal-only components should not be command-line selectable.Diego Biurrun2012-03-21
|
* ZeroCodec DecoderDerek Buitenhuis2012-03-19
| | | | | | | | An obscure Japanese lossless video codec, originally intended for use with a remote desktop application. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* remove iwmmxt optimizationsJanne Grunau2012-03-12
| | | | | | The were broken since August of 2010 without anyone noticing until three weeks ago. Nobody cares about it anymore and hopefully Marvell will support NEON like in the PXA978 from now on.
* configure: darwin: Change dylib install names to include major version.Gil Pedersen2012-03-09
| | | | | | | This will cause linkers to link against the major lib names, instead of the base names, allowing multiple major versions of the libraries to co-exist. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavc: drop libdirac encoder.Anton Khirnov2012-02-23
| | | | | Libschroedinger is the preferred way to encode dirac video now, it produces better output and has a nicer API.
* Remove libpostproc.Diego Biurrun2012-02-23
| | | | | | | | This library does not fit into Libav as a whole and its code is just a maintenance burden. Furthermore it is now available as an external project, which completely obviates any reason to keep it around. URL: http://git.videolan.org/?p=libpostproc.git
* dxva2: don't check for DXVA_PictureParameters->wDecodedPictureIndexRafaël Carré2012-02-22
| | | | | | | | | | | This structure is well defined by Microsoft at: http://msdn.microsoft.com/en-us/library/windows/hardware/ff564012(v=vs.85).aspx Thus, the wDecodedPictureIndex member is guaranteed to exist. Also, both the MPEG-2 and VC-1 hwaccel decoders depend on this struct member, but only the VC-1 decoder was disabled if the check failed. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* librtmp: Add "lib" prefix to librtmp URLProtocol declarations.Diego Biurrun2012-02-14
| | | | | | This allows easily differentiating between both implementations within the build system and combining the native implementation for plain RTMP with librtmp for the RTMPE, RTMPS, RTMPT, RTMPTE protocol variants.
* build: Set correct dependencies for rtmp* protocols implemented by librtmp.Diego Biurrun2012-02-13
|
* Remove Sun medialib glue code.Diego Biurrun2012-02-08
| | | | | It is obscure, most likely unused and not bit-exact compared to libavcodec due to a different IDCT transform algorithm.
* win64: add a XMM clobber test configure option.Ronald S. Bultje2012-02-02
| | | | | | | This will be useful to test more aggressively for failures to mark XMM registers as clobbered in Win64 builds, and prevent regressions thereof. Based on a patch by Ramiro Polla <ramiro.polla@gmail.com>
* fate: make acodec-ac3_fixed test output raw AC3Mans Rullgard2012-02-02
| | | | | | There is no point in this test using the RM format. Signed-off-by: Mans Rullgard <mans@mansr.com>
* config.asm: change %ifdef directives to %if directives.Ronald S. Bultje2012-01-27
| | | | This allows combining multiple conditionals in a single statement.
* lavd: remove deprecated v4l grab device.Anton Khirnov2012-01-24
|
* Remove ffmpeg.Anton Khirnov2012-01-23
|