summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Support building with TI TMS470 compilerMåns Rullgård2009-07-19
| | | | Originally committed as revision 19465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently lowercase all HTML tags.Diego Biurrun2009-07-19
| | | | Originally committed as revision 19464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If any input/output devices are enabled then indevs/outdevs shouldDiego Biurrun2009-07-19
| | | | | | get enabled, not demuxers/muxers. Originally committed as revision 19463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use globally consistent include guard names.Stefano Sabatini2009-07-19
| | | | Originally committed as revision 19462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace two occurrences of 'vfwcap_demuxer' with 'vfwcap_indev', IStefano Sabatini2009-07-18
| | | | | | | 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
* Allow enabling alsa and jack devices.Carl Eugen Hoyos2009-07-18
| | | | Originally committed as revision 19460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace pow(x, 0.75) with sqrtf(x * sqrtf(x)) for a 33% speedup.Alex Converse2009-07-17
| | | | Originally committed as revision 19459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that tests/seek_test.o gets deleted on 'make clean'.Diego Biurrun2009-07-17
| | | | | | Closes issue 1273. Originally committed as revision 19458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dead code removal in the AAC encoder.Alex Converse2009-07-17
| | | | Originally committed as revision 19457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: improve detection of out-of-tree buildsMåns Rullgård2009-07-17
| | | | Originally committed as revision 19456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove some useless commentsMåns Rullgård2009-07-17
| | | | Originally committed as revision 19455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Icc 11.1 still does not align the stack pointer, disable some x264 functions.Carl Eugen Hoyos2009-07-17
| | | | Originally committed as revision 19454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for __attribute__((packed)) supportMåns Rullgård2009-07-17
| | | | | | Not all compilers claiming to be gcc support this attribute. Originally committed as revision 19453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: handle --cpu before running compilerMåns Rullgård2009-07-17
| | | | | | | | 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
* configure: simplify --cpu handling slightlyMåns Rullgård2009-07-17
| | | | Originally committed as revision 19451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2009-07-17
| | | | Originally committed as revision 19450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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