summaryrefslogtreecommitdiff
path: root/libavutil/lfg.h
Commit message (Collapse)AuthorAge
* spelling/grammar/consistency review part IDiego Biurrun2009-01-28
| | | | Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l typo my new PRNG converged to -1.Michael Niedermayer2008-07-30
| | | | Originally committed as revision 14479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a multiplicative LFG for those thinking the additive is not goodMichael Niedermayer2008-07-30
| | | | | | enough, just 4 lines of code. Originally committed as revision 14478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document av_lfg_get().Michael Niedermayer2008-07-28
| | | | Originally committed as revision 14461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simple lagged fibonacci PRNG.Michael Niedermayer2008-07-28
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