aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
Commit message (Collapse)AuthorAgeFilesLines
...
* for floats fabs is better & smaller then ABSMichael Niedermayer2006-07-201-1/+1
| | | | Originally committed as revision 5801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simpler, smaller and fasterMichael Niedermayer2006-07-201-13/+28
| | | | Originally committed as revision 5800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Install log.hLuca Abeni2006-07-191-1/+1
| | | | Originally committed as revision 5790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-191-8/+3
| | | | Originally committed as revision 5786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_malloc(), av_realloc(), and av_free() from libavcodec to libavutilLuca Abeni2006-07-193-1/+144
| | | | Originally committed as revision 5784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_log() & friends to libavutilLuca Abeni2006-07-184-0/+113
| | | | Originally committed as revision 5781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split common.h in two parts, purely internal stuff (internal.h) and thingsReimar Döffinger2006-07-162-214/+226
| | | | | | | available to external programs as well. Also make more things available to external programs like GET_UTF8, MKTAG etc. Originally committed as revision 5765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* calculate all coefficients for several orders during cholesky factorization, ↵Michael Niedermayer2006-07-152-31/+40
| | | | | | 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
* unneeded #includeMichael Niedermayer2006-07-141-3/+0
| | | | Originally committed as revision 5743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adding a \ so we can add more lines without having to do a "cosmetic" change ↵Michael Niedermayer2006-07-141-1/+1
| | | | | | in the previous line Originally committed as revision 5741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* linear least squares solver using cholesky factorizationMichael Niedermayer2006-07-143-0/+187
| | | | Originally committed as revision 5740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMåns Rullgård2006-07-141-8/+8
| | | | Originally committed as revision 5739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMåns Rullgård2006-07-141-17/+6
| | | | Originally committed as revision 5738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMåns Rullgård2006-07-141-23/+4
| | | | Originally committed as revision 5737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove impossible #ifdef caseMåns Rullgård2006-07-141-12/+2
| | | | Originally committed as revision 5736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove old msvc cruftMåns Rullgård2006-07-131-8/+2
| | | | Originally committed as revision 5735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant #include <math.h>Måns Rullgård2006-07-131-5/+0
| | | | Originally committed as revision 5734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace -D_GNU_SOURCE with -D_ISOC9X_SOURCE to avoid accidental useMåns Rullgård2006-07-131-1/+1
| | | | | | of gnu extensions Originally committed as revision 5733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup suggested by Michael NiedermayerMåns Rullgård2006-07-131-3/+5
| | | | Originally committed as revision 5732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move adler32 to libavutilMåns Rullgård2006-07-133-1/+50
| | | | Originally committed as revision 5731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use justDiego Biurrun2006-07-111-6/+6
| | | | | | CONFIG_MINGW or __MINGW32__ instead. Originally committed as revision 5718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation after last commit.Diego Biurrun2006-07-111-5/+5
| | | | Originally committed as revision 5710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old MSVC remnants.Diego Biurrun2006-07-111-15/+0
| | | | Originally committed as revision 5709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2006-07-091-6/+3
| | | | Originally committed as revision 5690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove STATS code (probably hasnt been used for years ..., and its not ↵Michael Niedermayer2006-07-091-24/+0
| | | | | | completely clear what it was good for anyway) Originally committed as revision 5689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put the code which is specific for the large crc table under #ifndef ↵Michael Niedermayer2006-07-081-0/+4
| | | | | | CONFIG_SMALL Originally committed as revision 5676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moving utf8 reading function to libavutilMichael Niedermayer2006-07-071-0/+14
| | | | Originally committed as revision 5664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add proper LGPL header.Diego Biurrun2006-07-051-1/+14
| | | | Originally committed as revision 5634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling typoDiego Biurrun2006-07-051-1/+1
| | | | Originally committed as revision 5633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg better support pic - from Diego Pettenò <flameeyes@gentoo.org>Luca Barbato2006-07-051-0/+4
| | | | Originally committed as revision 5631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break overly long lines.Diego Biurrun2006-07-051-1/+2
| | | | Originally committed as revision 5622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* floorf() is not used, and causes warnings on SolarisMåns Rullgård2006-07-041-6/+0
| | | | Originally committed as revision 5617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-031-7/+4
| | | | Originally committed as revision 5597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix endianess build in a better wayLuca Barbato2006-07-031-7/+4
| | | | Originally committed as revision 5596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move REG_* macros from libavcodec/i386/mmx.h to libavutil/x86_cpu.hLuca Abeni2006-07-031-0/+38
| | | | Originally committed as revision 5595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* big endian fixLuca Barbato2006-07-031-0/+4
| | | | Originally committed as revision 5592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1l: put that int i backMåns Rullgård2006-07-021-0/+1
| | | | Originally committed as revision 5587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warningsMåns Rullgård2006-07-022-6/+6
| | | | Originally committed as revision 5585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compile md5 and include in libavutil.aIvo van Poorten2006-07-021-1/+2
| | | | Originally committed as revision 5584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing declaration for av_md5_sumIvo van Poorten2006-07-021-0/+1
| | | | Originally committed as revision 5583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cast pointers to make compiler happyIvo van Poorten2006-07-021-4/+3
| | | | | | remove test define Originally committed as revision 5582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* md5 supportMichael Niedermayer2006-07-012-0/+183
| | | | | | | depending on CONFIG_SMALL this can either be compiled to a fully unrolled kernel / rfc reference style md5 routine or a single loop similar to what mplayer uses Originally committed as revision 5565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make sure NDEBUG is not defined already before defining itDiego Pettenò2006-06-301-1/+1
| | | | | | | | | Patch by Diego 'Flameeyes' Petteno flameeyes AA gentoo PP org Original thread: Date: Jun 30, 2006 1:09 AM Subject: [Ffmpeg-devel] [PATCH] Avoid warning on NDEBUG redefinition Originally committed as revision 5557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant make variable SUBDIRMåns Rullgård2006-06-011-1/+0
| | | | Originally committed as revision 5442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve selftestMichael Niedermayer2006-05-291-3/+4
| | | | Originally committed as revision 5424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some lines that are duplicated in common.mak.Diego Biurrun2006-05-171-9/+0
| | | | Originally committed as revision 5392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document clip functionsAurelien Jacobs2006-05-011-0/+12
| | | | Originally committed as revision 5338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clip_uint8 should return an uint8_t instead of an int (patch by Panagiotis ↵Panagiotis Issaris2006-04-301-1/+1
| | | | | | Issaris < takis.issaris _at_ uhasselt.be >) Originally committed as revision 5336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extend range used for testing (larger range should work too but testing code ↵Michael Niedermayer2006-04-291-3/+3
| | | | | | overflows) Originally committed as revision 5334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* <= vs. >= 10l bugMichael Niedermayer2006-04-291-5/+9
| | | | Originally committed as revision 5333 to svn://svn.ffmpeg.org/ffmpeg/trunk