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
2008-08-20Cosmetics: remove a redundant and misplaced doxy.Stefano Sabatini
Originally committed as revision 14856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20Deprecate av_fifo_realloc(). av_fifo_realloc2() should be used instead.Stefano Sabatini
Originally committed as revision 14855 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Implement av_fifo_realloc2().Stefano Sabatini
Originally committed as revision 14846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Copy and paste LGPL from tree.h, the previous one referred to a non-existingMichael Niedermayer
version. Originally committed as revision 14818 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add missing stdint.h header to fix 'make checkheaders'.Diego Biurrun
Originally committed as revision 14816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17use LFG instead of Mersenne Twister for AC-3 PRNGJustin Ruggles
Originally committed as revision 14815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17restore alphabetical order of TESTSMichael Niedermayer
Originally committed as revision 14813 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add PCA to TESTS.Michael Niedermayer
Originally committed as revision 14812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add multiple inclusion guards for consistency and to avoid them beingMichael Niedermayer
forgotten in case they ever become neccessary. Originally committed as revision 14810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Move context struct to c file.Michael Niedermayer
Originally committed as revision 14809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Add prototypes to header (based on code by ramiro)Michael Niedermayer
Originally committed as revision 14808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Make ff_pca_init() allocate it struct instead of letting the user provideMichael Niedermayer
one (more robust ABI wise). Originally committed as revision 14807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Do not mix declarations and statements (by ramiro).Michael Niedermayer
Originally committed as revision 14806 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17put testing code under #ifdef TESTMichael Niedermayer
Originally committed as revision 14805 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Testing code uses random().Michael Niedermayer
Originally committed as revision 14804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17fix includesMichael Niedermayer
Originally committed as revision 14803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17Principal component analysisMichael Niedermayer
(will be cleaned up in next commits) Originally committed as revision 14802 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-15Remove hackish support for fastmemcpy from MPlayer.Diego Biurrun
Originally committed as revision 14764 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-13move M_PI definition along with other math definitionsAurelien Jacobs
Originally committed as revision 14727 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-13define some math constants so as not to depend on _XOPEN_SOURCEAurelien Jacobs
Originally committed as revision 14725 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-08Cosmetics: fix weird indent.Stefano Sabatini
Originally committed as revision 14670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-08Implement avutil_version().Stefano Sabatini
Originally committed as revision 14665 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-08-06Remove a useless directive.Benoit Fouet
Originally committed as revision 14645 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Cosmetics: indentationBenoit Fouet
Originally committed as revision 14644 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Add av_memcpy_backptr(): deliberately overlapping memcpy variant.Peter Ross
Originally committed as revision 14641 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-05misc spelling/wording fixesDiego Biurrun
Originally committed as revision 14539 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31fix ARMv6 FASTDIV for divisor <=2Måns Rullgård
Originally committed as revision 14481 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-311000l typo my new PRNG converged to -1.Michael Niedermayer
Originally committed as revision 14479 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Add a multiplicative LFG for those thinking the additive is not goodMichael Niedermayer
enough, just 4 lines of code. Originally committed as revision 14478 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-30USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.Diego Biurrun
Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Document av_lfg_get().Michael Niedermayer
Originally committed as revision 14461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Warning about MTs speed.Michael Niedermayer
Originally committed as revision 14460 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Simple lagged fibonacci PRNG.Michael Niedermayer
3.5 times faster than our mersene twister. 10 times less memory needed. (=less cache trashing) Originally committed as revision 14458 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Add random to list of test programs.Diego Biurrun
Originally committed as revision 14441 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Change return type of main function to int to avoid a warning.Diego Biurrun
Originally committed as revision 14440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Move #includes, which are only used in the test program, below the #ifdefDiego Biurrun
surrounding the test program to save an #ifdef at the top of the file. Originally committed as revision 14439 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Change benchmarking code so it returns comparable values.Michael Niedermayer
Originally committed as revision 14434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Make the selftesting code use and compileable.Michael Niedermayer
Originally committed as revision 14433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-24cosmetics: Fix two common typos: wont --> will not, lets --> let us.Diego Biurrun
Originally committed as revision 14372 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-24Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun
The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros. Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-18intreadwrite: support DEC compiler __unaligned type qualifierMåns Rullgård
Originally committed as revision 14275 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-17Rearrange AV_[RW][BL]*() macrosMåns Rullgård
Originally committed as revision 14265 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-15ARM: ARMv6 optimised FASTDIVMåns Rullgård
Originally committed as revision 14242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-15ARM: fix ARCH_ARM -> ARCH_ARMV4L test in bswap_32()Måns Rullgård
Originally committed as revision 14240 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-15ARM: ARMv6 optimised bswap_16/32Måns Rullgård
Originally committed as revision 14239 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-15Print the address of the AVCodecContext in av_log().Alexander Strange
This makes debug output much easier to read when the same codec is open more than once. Originally committed as revision 14237 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-13Add av_clipf() function to common.h and use it in ra288.cVitor Sessak
Originally committed as revision 14213 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-13simplify vorbis windowingLoren Merritt
Originally committed as revision 14205 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-05Only define AltiVec vector syntax macro when AltiVec is enabled.Peter Ross
patch by Peter Ross, pross xvid org Originally committed as revision 14073 to svn://svn.ffmpeg.org/ffmpeg/trunk