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
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-03-08Alpha: move dsputil prototypes to a header fileMåns Rullgård
Originally committed as revision 22308 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-18Alpha: fix pix_abs16Måns Rullgård
Originally committed as revision 16675 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-18Alpha: add ff_ prefix to idct functionsMåns Rullgård
Originally committed as revision 16668 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-18Alpha: indentationMåns Rullgård
Originally committed as revision 16667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-18Alpha: proper IDCT selectionMåns Rullgård
Only select the Alpha IDCT if auto or explicitly requested. Also disable it in lowres mode. Originally committed as revision 16666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03Delete unnecessary 'extern' keywords.Diego Biurrun
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-16Add libavcodec to compiler include flags in order to simplify headerRonald S. Bultje
include paths in the source files. mostly from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-12-30interlaced motion estimationMichael Niedermayer
interlaced mpeg2 encoding P & B frames rate distored interlaced mb decission alternate scantable support 4mv encoding fixes (thats also why the regression tests change) passing height to most dsp functions interlaced mpeg4 encoding (no direct mode MBs yet) various related cleanups disabled old motion estimaton algorithms (log, full, ...) they will either be fixed or removed Originally committed as revision 2638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-13Use asms instead of builtins when compiling for generic Alpha. LessFalk Hüffner
ugly. Originally committed as revision 2270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-06-29build error on Alpha patch by (Sam Hocevar <sam at zoy dot org>)Sam Hocevar
Originally committed as revision 1996 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-06-21the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad ↵Michael Niedermayer
dot com>) Originally committed as revision 1983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-03-03MpegEncContext.(i)dct_* -> DspContext.(i)dct_*Michael Niedermayer
bitexact cleanup Originally committed as revision 1617 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-01-10Implement sad8x8 and sad16x16 with pix_abs.Falk Hüffner
Originally committed as revision 1428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-11-27Kludge around compilation failure on Alpha.Falk Hüffner
Originally committed as revision 1286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-11-11* using DSPContext - so each codec could use its local (sub)set of CPU extensionZdenek Kabelac
* these are untested - users/developers please check Originally committed as revision 1197 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-10-12Move Alpha optimized IDCT to own file. Based on a patch by MånsFalk Hüffner
Rullgård <mru@users.sourceforge.net>. I've left out the idctCol2 part, because W4 has recently been decreed to be 16383, and also I doubt it will give a noticeable speedup. Originally committed as revision 1029 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-09-29Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large winFalk Hüffner
on ev6. Originally committed as revision 979 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-09-14Synthesize pixels16 functions from pixels functions.Falk Hüffner
Originally committed as revision 942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-09-13Adapt to new 8/16 table scheme.Falk Hüffner
Originally committed as revision 935 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-30MVI optimizations for motion estimation.Falk Hüffner
Originally committed as revision 831 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-13Remove support for variable BSIZE and INCR, as sub_pixels_* is noFalk Hüffner
longer needed. Originally committed as revision 754 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-13* Improve xy2 routines slightlyFalk Hüffner
* Mark MC pointer arguments as restrict Originally committed as revision 752 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-05Implement clear_blocks_axp.Falk Hüffner
Originally committed as revision 722 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-03Use updated motion compensation routines.Falk Hüffner
Originally committed as revision 713 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-02Assembly version of put_pixels. This is currently the function thatFalk Hüffner
takes the most time, and it allows for more efficient unaligned access and better control over memory latencies. Originally committed as revision 711 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-07-01Implement put_pixels_clamped and add_pixels_clamped in Assembler. ThisFalk Hüffner
allows better scheduling of the memory accesses, and is portable among all compilers. Originally committed as revision 709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-06-25Ugly hack to make the assembler accept MVI instructions.Falk Hüffner
Originally committed as revision 705 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-05-26license/copyright changeFabrice Bellard
Originally committed as revision 599 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-01-20Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>Nick Kurshev
Originally committed as revision 274 to svn://svn.ffmpeg.org/ffmpeg/trunk