Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-23Move output redirection of deps generation from make rule to DEPEND_CMDMåns Rullgård
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23Make Theora decoder depend on the VP3 decoder.Diego Biurrun
Practically all the code is shared. Originally committed as revision 19491 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23configure: group tests for compiler characteristics togetherMåns Rullgård
Originally committed as revision 19490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23configure: set -mdynamic-no-pic flag in main darwin sectionMåns Rullgård
Originally committed as revision 19489 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23configure: remove special flags for XLC on DarwinMåns Rullgård
Rationale: - Current versions of XLC accept gcc flags - XLC can't compile FFmpeg Originally committed as revision 19488 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23configure: remove some darwin-related cruftMåns Rullgård
Originally committed as revision 19487 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-22configure: group all cpu-specific tests togetherMåns Rullgård
Originally committed as revision 19485 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-21Make E-AC-3 decoder depend on the AC-3 decoder.Diego Biurrun
It is impossible to build E-AC-3 without AC-3. Originally committed as revision 19477 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-21ARM: check for VFP register argumentsMåns Rullgård
Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-20configure: make --extra-cflags cumulative againMåns Rullgård
Originally committed as revision 19471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-20Make VP6A/VP6F decoders depend on the VP6 decoder.Diego Biurrun
They share so much code that enabling one without the other is pointless. Originally committed as revision 19468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-19Make WMV3 decoders depend on their VC-1 counterparts.Diego Biurrun
They share so much code that enabling one without the other is pointless. Originally committed as revision 19466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-19Support building with TI TMS470 compilerMåns Rullgård
Originally committed as revision 19465 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-19If any input/output devices are enabled then indevs/outdevs shouldDiego Biurrun
get enabled, not demuxers/muxers. Originally committed as revision 19463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-18Replace two occurrences of 'vfwcap_demuxer' with 'vfwcap_indev', IStefano Sabatini
missed them in r19293. Re-enable version check on w32api.h if the vfwcap input device has been selected. Originally committed as revision 19461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-18Allow enabling alsa and jack devices.Carl Eugen Hoyos
Originally committed as revision 19460 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17configure: improve detection of out-of-tree buildsMåns Rullgård
Originally committed as revision 19456 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17configure: remove some useless commentsMåns Rullgård
Originally committed as revision 19455 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17Check for __attribute__((packed)) supportMåns Rullgård
Not all compilers claiming to be gcc support this attribute. Originally committed as revision 19453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17configure: handle --cpu before running compilerMåns Rullgård
It is possible that the compiler requires flags set by the --cpu option, so we should not attempt to run it before those flags have been added. Originally committed as revision 19452 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17configure: simplify --cpu handling slightlyMåns Rullgård
Originally committed as revision 19451 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17configure: do not warn about mismatching altivec/cpu selectionMåns Rullgård
We do not issue similar warnings for other architectures, and we generally assume users know what they want. Originally committed as revision 19445 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-16Fix check_func_headers. The reference to the function under test was beingMartin Storsjö
optimized out by gcc when the headers lied about the function existing, rendering the test useless in that situation. This new test throws a warning in mingw-w64, but that should not be a problem. Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-15Disable gcc auto-vectorisationMåns Rullgård
The auto-vectoriser in gcc is enabled by default at -O3 since version 4.3. However, it provides no speed benefit, but does produce incorrect code on many targets. Disabling it for gcc should give more reliable builds. If the adventurous want it back, they can edit the makefile themselves. Originally committed as revision 19439 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-15Require aligned memory for everything that needs itMåns Rullgård
Altivec, NEON, and SSE require more alignment than standard malloc() guarantees, whereas MMX does not. Update checks to reflect this. Originally committed as revision 19438 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-15Skip the check for SSE aligned memory allocators when SSE is disabled.Diego Biurrun
Fixes issue 1269. Originally committed as revision 19437 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-15Use normal check_func test for math functionsMåns Rullgård
Originally committed as revision 19434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-14Improve linker check for Winsock library name.Martin Storsjö
On Windows CE, the Winsock library name is ws2, not ws2_32. patch by Martin Storsjö, martin martin st Originally committed as revision 19431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-14Set default flag filters before compiler detectionMåns Rullgård
This allows use of the add_*flags functions in the compiler detection section. Originally committed as revision 19428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-14Install the mingw import libraries, too.Martin Storsjö
Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19427 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Enable creation of microsoft-style import libraries on arm.Martin Storsjö
Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19426 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Use add_*flags only after compiler-specific configurationMåns Rullgård
Originally committed as revision 19422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Allow filtering of flags passed to compiler and assemblerMåns Rullgård
This can be used to map gcc-type flags to equivalents with other compilers. Originally committed as revision 19421 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Make (de)muxers for format variants select the main format (de)muxer.Diego Biurrun
It makes little sense to enable the variant without the main format. Originally committed as revision 19420 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Place flags for dependency generation in DEPFLAGSMåns Rullgård
This avoids duplicating the full DEPEND_CMD line only to change some flags. Originally committed as revision 19419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Set CPPFLAGS in config.mak using normal assignmentMåns Rullgård
Setting this value using ?= caused some trouble if it was already defined in the environment. Originally committed as revision 19418 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Protect config.mak against multiple inclusionMåns Rullgård
Some of the values set here are modified by the main makefiles and should not be reset when config.mak is included again. Originally committed as revision 19417 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Use CFLAGS in default DEPEND_CMDMåns Rullgård
Originally committed as revision 19415 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Use CFLAGS in check_cppMåns Rullgård
Originally committed as revision 19414 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Set as_default after compiler detection, allowing compiler-specific defaultsMåns Rullgård
Originally committed as revision 19413 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Pass ASFLAGS to assembler instead of CFLAGSMåns Rullgård
Originally committed as revision 19412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Add flags from --extra-cflags after compiler detectionMåns Rullgård
Originally committed as revision 19411 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Set CPU selection flags in $cpuflags, add to cflags outside case blockMåns Rullgård
Originally committed as revision 19410 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Allow unusual ways of specifying compiler output fileMåns Rullgård
Some compilers do not use the typical -c -o foo.o style. This allows compiler-specific equivalents to be set by the configure script. Originally committed as revision 19409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Use DEPCC to find dependencies, default to same as CCMåns Rullgård
Originally committed as revision 19408 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Use LD for linking, default to same as CCMåns Rullgård
Originally committed as revision 19407 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Set CFLAGS directly in config.mak instead of using OPTFLAGSMåns Rullgård
Originally committed as revision 19406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Add --sysroot flag to CPPFLAGS, not CFLAGSMåns Rullgård
Originally committed as revision 19405 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Separate C preprocessor flags into CPPFLAGS variableMåns Rullgård
Originally committed as revision 19404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-12Make VAAPI/VDPAU variant of decoder foo depend on decoder foo.Diego Biurrun
The VAAPI/VDPAU variants of foo require almost all of the code of foo. Thus it makes little sense to enable just the accelerated variant. This allows refactoring some object dependencies in the Makefiles. Originally committed as revision 19403 to svn://svn.ffmpeg.org/ffmpeg/trunk