summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add SHA-2 hashingKostya Shishkov2009-07-17
| | | | Originally committed as revision 19449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add iirfilter to the TESTPROGS variable (and target)Alex Converse2009-07-16
| | | | Originally committed as revision 19448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename invalid option name "gop" to "g" in opt_target(), so thatLou Logan2009-07-16
| | | | | | | | -target *-dvd works correctly. Patch by Lou Logan <$firstname@fakeoutdoorsman com>. Originally committed as revision 19447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CPPFLAGS when building testsMåns Rullgård2009-07-16
| | | | Originally committed as revision 19446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: do not warn about mismatching altivec/cpu selectionMåns Rullgård2009-07-16
| | | | | | | 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
* When calculating AAC quantized band cost, don't leave garbage in the bit countAlex Converse2009-07-16
| | | | | | for the 0 codebook. Originally committed as revision 19444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IIR filter test program.Alex Converse2009-07-16
| | | | Originally committed as revision 19443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move some code blocks to reduce the number of #ifdefs.Diego Biurrun2009-07-16
| | | | Originally committed as revision 19442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update project URL for OpenCORE AMR.Martin Storsjö2009-07-16
| | | | | | patch by Martin Storsjö, martin martin st Originally committed as revision 19441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix check_func_headers. The reference to the function under test was beingMartin Storsjö2009-07-16
| | | | | | | | | 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
* Disable gcc auto-vectorisationMåns Rullgård2009-07-15
| | | | | | | | | | | 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
* Require aligned memory for everything that needs itMåns Rullgård2009-07-15
| | | | | | | 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
* Skip the check for SSE aligned memory allocators when SSE is disabled.Diego Biurrun2009-07-15
| | | | | | Fixes issue 1269. Originally committed as revision 19437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only free '*ic_ptr' when a caller has pre-allocated a context and passed it inArt Clarke2009-07-15
| | | | | | | (wherein av_open_input_file assumes memory ownership). Patch by Art Clarke a<surname> xuggle com Originally committed as revision 19436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print atom info during parsing, patch by Frank Barchard, fbarchard at google ↵Frank Barchard2009-07-15
| | | | | | dot com Originally committed as revision 19435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use normal check_func test for math functionsMåns Rullgård2009-07-15
| | | | Originally committed as revision 19434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_neterrno instead of errno in tcp.c.Martin Storsjö2009-07-15
| | | | | | | | | | If ff_neterrno() is checked instead of errno, that's probably what should be used in the return value. As a sideeffect, this gives better compatibility with Windows (CE), where network errors aren't visible in errno.) patch by Martin Storsjö, martin martin st Originally committed as revision 19433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set subtitle type in DVB subtitle decoder.Janne Grunau2009-07-14
| | | | | | Patch by Janne Grunau <j?nne-f?mpeg@jannau?net>. Originally committed as revision 19432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve linker check for Winsock library name.Martin Storsjö2009-07-14
| | | | | | | 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
* Remove unnecessary rtsp.h #include.Diego Biurrun2009-07-14
| | | | | | Nothing from the header was used and it caused trouble on Windows CE. Originally committed as revision 19430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use cutoff frequency to adjust bandwidth in the generic psymodel preprocess.Alex Converse2009-07-14
| | | | Originally committed as revision 19429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set default flag filters before compiler detectionMåns Rullgård2009-07-13
| | | | | | | 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
* Install the mingw import libraries, too.Martin Storsjö2009-07-13
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable creation of microsoft-style import libraries on arm.Martin Storsjö2009-07-13
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only #define lseek to _lseeki64 on MinGW, not MinGW CE.İsmail Dönmez2009-07-13
| | | | | | | This fixes compilation on WinCE, which does not support _lseeki64. patch by Ismail Dönmez, ismail namtrac org Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "warning: assignment discards qualifiers from pointer target type"David Conrad2009-07-13
| | | | Originally committed as revision 19424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in libtheora encoderArt Clarke2009-07-13
| | | | | | Patch by Art Clarke [aclark , xuggle . com] Originally committed as revision 19423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use add_*flags only after compiler-specific configurationMåns Rullgård2009-07-12
| | | | Originally committed as revision 19422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow filtering of flags passed to compiler and assemblerMåns Rullgård2009-07-12
| | | | | | | 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
* Make (de)muxers for format variants select the main format (de)muxer.Diego Biurrun2009-07-12
| | | | | | It makes little sense to enable the variant without the main format. Originally committed as revision 19420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Place flags for dependency generation in DEPFLAGSMåns Rullgård2009-07-12
| | | | | | | 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
* Set CPPFLAGS in config.mak using normal assignmentMåns Rullgård2009-07-12
| | | | | | | 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
* Protect config.mak against multiple inclusionMåns Rullgård2009-07-12
| | | | | | | 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
* Append the user CPPFLAGS value to the CPPFLAGS used for compilation,Stefano Sabatini2009-07-12
| | | | | | | | | | rather than prepend it. This way there is the guarantee that the included headers are those in the FFmpeg sources, rather than pre-installed headers referenced by the user CPPFLAGS. Originally committed as revision 19416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CFLAGS in default DEPEND_CMDMåns Rullgård2009-07-12
| | | | Originally committed as revision 19415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CFLAGS in check_cppMåns Rullgård2009-07-12
| | | | Originally committed as revision 19414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set as_default after compiler detection, allowing compiler-specific defaultsMåns Rullgård2009-07-12
| | | | Originally committed as revision 19413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass ASFLAGS to assembler instead of CFLAGSMåns Rullgård2009-07-12
| | | | Originally committed as revision 19412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flags from --extra-cflags after compiler detectionMåns Rullgård2009-07-12
| | | | Originally committed as revision 19411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set CPU selection flags in $cpuflags, add to cflags outside case blockMåns Rullgård2009-07-12
| | | | Originally committed as revision 19410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow unusual ways of specifying compiler output fileMåns Rullgård2009-07-12
| | | | | | | | 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
* Use DEPCC to find dependencies, default to same as CCMåns Rullgård2009-07-12
| | | | Originally committed as revision 19408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use LD for linking, default to same as CCMåns Rullgård2009-07-12
| | | | Originally committed as revision 19407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set CFLAGS directly in config.mak instead of using OPTFLAGSMåns Rullgård2009-07-12
| | | | Originally committed as revision 19406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add --sysroot flag to CPPFLAGS, not CFLAGSMåns Rullgård2009-07-12
| | | | Originally committed as revision 19405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate C preprocessor flags into CPPFLAGS variableMåns Rullgård2009-07-12
| | | | Originally committed as revision 19404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VAAPI/VDPAU variant of decoder foo depend on decoder foo.Diego Biurrun2009-07-12
| | | | | | | | 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
* Remove useless definition of struct AVCLASS.Stefano Sabatini2009-07-12
| | | | Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow bulk-disabled things to be re-enabled by dependentsMåns Rullgård2009-07-12
| | | | Originally committed as revision 19401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitAlex Converse2009-07-10
| | | | Originally committed as revision 19400 to svn://svn.ffmpeg.org/ffmpeg/trunk