- May 07, 2010
-
-
Michael Kostylev authored
The Niagara/T1 supports only a subset of VIS, and even this is very slow. Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 23045 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- May 06, 2010
-
-
Jason Garrett-Glaser authored
Minor version bump. Originally committed as revision 23038 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- May 03, 2010
-
-
Måns Rullgård authored
ICC needs at least -O1 to link so add this when optimisations are otherwise disabled. Originally committed as revision 23013 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- May 02, 2010
-
-
Carl Eugen Hoyos authored
Originally committed as revision 23010 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Apr 26, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22967 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Apr 23, 2010
-
-
Ronald S. Bultje authored
Originally committed as revision 22955 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22954 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Apr 19, 2010
-
-
Måns Rullgård authored
There are problems using pkg-config, and a better solution is being worked on. Originally committed as revision 22914 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Jason Garrett-Glaser authored
Originally committed as revision 22913 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
This lets check_deps set the generic CONFIG_ENCODERS and friends using an _if_any construct. Originally committed as revision 22911 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22910 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22909 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 30, 2010
-
-
Alexander Strange authored
Darwin compilers default to PIC on, so -mdynamic-no-pic (which disables it again) needs to be added to cflags before enable pic is checked. Fixes compilation without --enable-shared at least the 10.6 system compiler for x86-32. Fixes speed regression on all darwin arches except x86-64. Originally committed as revision 22730 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 28, 2010
-
-
Howard Chu authored
librtmp. Patch by Howard Chu <hyc * highlandsun * com>. Originally committed as revision 22710 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 25, 2010
-
-
Stefano Sabatini authored
Originally committed as revision 22684 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 16, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22569 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Both bash and ksh abuse this variable even in POSIX mode, leading to unpleasant surprises. Originally committed as revision 22568 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
This moves the H264-specific functions from DSPContext to the new H264DSPContext. The code is made conditional on CONFIG_H264DSP which is set by the codecs requiring it. The qpel and chroma MC functions are not moved as these are used by non-h264 code. Originally committed as revision 22565 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 15, 2010
-
-
Måns Rullgård authored
This adds a "fate" make target which runs the full FATE test suite. Individual tests can be run with "make fate-$testname". The location of the FATE test samples must be specified with the --samples=PATH option to configure. The tests/fate-update.sh script regenerates the references files and test list from the online FATE database. These are checked in since generating them requires non-standard tools. Originally committed as revision 22552 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Originally committed as revision 22538 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 14, 2010
-
-
Måns Rullgård authored
This moves the DWT functions from snow.c and dsputil.c to a file of their own. A new struct, DWTContext, holds the function pointers previously part of DSPContext. Originally committed as revision 22522 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 12, 2010
-
-
Diego Biurrun authored
This make NetBSD compile out of the box at the cost of a hack, but a locally contained one that is preferable to the one used in the wild. Currently the NetBSD FATE box adds -D_NETBSD_SOURCE to CPPFLAGS to work around broken system headers. Since it is unlikely for NetBSD to fix their headers, it is better to use a standard flag instead of a system-specific one. As a sideeffect, this allows getting rid of a local _NETBSD_SOURCE definition. Originally committed as revision 22486 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Ramiro Polla authored
Originally committed as revision 22481 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 11, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22445 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22444 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
This disables all codecs, formats, etc. It saves some typing when only a few components are desired. Originally committed as revision 22443 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 10, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22439 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Fixes numerous warnings with --enable-small or --disable-optimizations. Originally committed as revision 22430 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 09, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22395 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Peter Ross authored
Originally committed as revision 22388 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Georgi Chorbadzhiyski authored
Patch by Georgi Chorbadzhiyski gf at unixsol dor org Originally committed as revision 22373 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 08, 2010
-
-
Måns Rullgård authored
This makes it an error to not have a prototype in scope for a function with external linkage. The flag is only enabled for gcc due to -Werror=type not working with all compilers. Originally committed as revision 22313 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 07, 2010
-
-
Måns Rullgård authored
Some other compilers turn too many warnings into errors with this flag. Originally committed as revision 22276 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
David Conrad authored
Older versions accepted both with and without an '=', but newer versions require the '=' to be omitted Originally committed as revision 22274 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 06, 2010
-
-
Måns Rullgård authored
Turning on -Werror=implicit makes implicit function declarations an error with supported compilers. Originally committed as revision 22269 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22245 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22242 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22240 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22239 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Mar 02, 2010
-
-
Måns Rullgård authored
Originally committed as revision 22143 to svn://svn.ffmpeg.org/ffmpeg/trunk
-