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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-29x86: lpc: simd av_update_llsLoren Merritt
4x-6x faster on sandybridge Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-06-29lpc: use function pointers, in preparation for asmLoren Merritt
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-06-29lpc: remove "decay" argumentLoren Merritt
We never used the rolling-average mode, and this makes av_update_lls 15% faster. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-05-05avutil: Add av_cold attributes to init functions missing themDiego Biurrun
2013-03-01lls: Do not return from void functionsDiego Biurrun
2013-03-01lls: #ifndef --> #if in FF_API_ version guardDiego Biurrun
2013-02-28lls: mark max_order as unsigned shortLuca Barbato
The value is within 0 and 32. Remove an `array subscript is below array bounds` warning.
2013-02-28lls: move to the private namespaceLuca Barbato
The functions are private.
2011-07-12lls: use av_lfg instead of rand() in test programMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-08lls: whitespace cosmeticsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-10Remove disabled code cruft.Diego Biurrun
Originally committed as revision 19616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20Align test program output columns.Diego Biurrun
Originally committed as revision 18068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Remove unused redefinition of av_log for test.Benoit Fouet
Originally committed as revision 14657 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-31Fix the following using void* casts, proper casts are less readable andMichael Niedermayer
avoiding casts would be even less readable, but other suggestions are welcome. lls.c:56: warning: initialization from incompatible pointer type lls.c:57: warning: initialization from incompatible pointer type Originally committed as revision 11697 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-09Remove unused variable variance.Diego Biurrun
Originally committed as revision 11471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-23main() --> main(void)Diego Biurrun
Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 9484 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-07-26Fix FSF postal address.Diego Biurrun
Originally committed as revision 5829 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-16calculate all coefficients for several orders during cholesky factorization, ↵Michael Niedermayer
the resulting coefficients are not strictly optimal though as there is a small difference in the autocorrelation matrixes which is ignored for the smaller orders Originally committed as revision 5758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-14unneeded #includeMichael Niedermayer
Originally committed as revision 5743 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-14linear least squares solver using cholesky factorizationMichael Niedermayer
Originally committed as revision 5740 to svn://svn.ffmpeg.org/ffmpeg/trunk