aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
Commit message (Collapse)AuthorAgeFilesLines
...
* AVL treeMichael Niedermayer2006-11-143-0/+181
| | | | Originally committed as revision 7031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename MEMALIGN_HACK to CONFIG_MEMALIGN_HACK, use common code in configureMåns Rullgård2006-11-141-5/+5
| | | | Originally committed as revision 7025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename inverse -> ff_inverseMåns Rullgård2006-11-121-4/+4
| | | | Originally committed as revision 6990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow spaces in source and build directory namesMåns Rullgård2006-11-081-1/+1
| | | | | | | out of tree builds from a source dir with spaces is impossible due to how make handles vpath Originally committed as revision 6938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxy comments for macro GET_UTF8Guillaume Poirier2006-11-061-2/+14
| | | | | | another fix in PUT_UTF8 doxy description Originally committed as revision 6917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong params name in PUT_UTF8 doxy commentsGuillaume Poirier2006-11-061-1/+1
| | | | Originally committed as revision 6913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* woops, fix missplaced doxy commentGuillaume Poirier2006-11-061-15/+15
| | | | Originally committed as revision 6912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ASF format parser's broken UTF-16 string handlingZuxy Meng2006-11-061-1/+35
| | | | | | | | | | | 1. Add a PUT_UTF8 macro to common.h; code borrowed from libavcodec/flacenc.c. 2. Make use of the macro in flacenc.c Patch by Zuxy Meng % zuxy P meng A gmail P com % Original thread: Date: Nov 5, 2006 9:56 AM Subject: [Ffmpeg-devel] PUT_UTF8 & asf format enhancement Originally committed as revision 6911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme2006-11-012-6/+6
| | | | | | patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define fallback for PRIX64, taken from a patch by Steve L'Homme.Steve L'Homme2006-11-011-0/+4
| | | | Originally committed as revision 6867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename SWAP macro to FFSWAP.Diego Biurrun2006-11-011-1/+1
| | | | Originally committed as revision 6865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use common define for x86_32 and x86_64.Diego Biurrun2006-11-013-5/+5
| | | | Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ARCH_X86_32 as a new define for 32 bit x86 architectures and changeDiego Biurrun2006-11-012-3/+3
| | | | | | the semantics of ARCH_X86 to mean both 32 and 64 bits. Originally committed as revision 6852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better #endif commentDiego Biurrun2006-11-011-1/+1
| | | | Originally committed as revision 6851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 16-bit grayscale supportKostya Shishkov2006-10-241-2/+6
| | | | Originally committed as revision 6778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Protect code that uses CMOV instructions with HAVE_CMOV,Guillaume Poirier2006-10-202-2/+2
| | | | | | | Make configure set CMOV_IS_FAST on arches on which cmov has a low latency (typically non-Netburst based processor) Originally committed as revision 6749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-112-4/+4
| | | | Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename SIGN macro to FFSIGN to avoid clashes with system headers.Diego Biurrun2006-10-111-1/+1
| | | | Originally committed as revision 6665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move CFLAGS handling to common.mak.Diego Biurrun2006-10-111-2/+1
| | | | Originally committed as revision 6642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move sign macro to libavutil.Diego Biurrun2006-10-101-0/+1
| | | | Originally committed as revision 6620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-0726-104/+156
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace -I../-I. by -I$(BUILD_ROOT).Diego Biurrun2006-10-071-2/+1
| | | | Originally committed as revision 6572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%Siarhei Siamashka2006-09-281-0/+11
| | | | | | | | | Patch by Siarhei Siamashka %siarhei P siamashka A gmail P com% Original thread: Date: Sep 28, 2006 2:26 AM Subject: [Ffmpeg-devel] [PATCH] ARM implementation of FASTDIV Originally committed as revision 6366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move memory functions from avcodec to avutilLuca Barbato2006-09-253-2/+39
| | | | Originally committed as revision 6330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove a division from STOP_TIMERLoren Merritt2006-09-211-1/+1
| | | | Originally committed as revision 6315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify asm mid_pred, as suggested by michaelni.Loren Merritt2006-09-211-10/+9
| | | | Originally committed as revision 6314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Moving FifoBuffer out of libavformat/avformat.h andRoman Shaposhnik2006-09-213-1/+162
| | | | | | libavformat/utils.c into libavutil Originally committed as revision 6310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asm implementation of mid_pred.Loren Merritt2006-09-151-1/+16
| | | | | | 20% faster huffyuv decoding, 4% faster ffv1. Originally committed as revision 6254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-1013-0/+234
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused defines, patch by takis P issaris A uhasselt P bePanagiotis Issaris2006-09-071-15/+0
| | | | | | | | Original thread: Re: [Ffmpeg-devel] [PATCH] Remove unused internal macros Sep 7 2006, 14:05 Originally committed as revision 6188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Exchange informal LGPL notice by official license header.Diego Biurrun2006-09-041-1/+18
| | | | Originally committed as revision 6164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add license from zlib.h instead of referring to it.Diego Biurrun2006-09-031-1/+19
| | | | Originally committed as revision 6155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Align the input buffer in ffplay, introduce a public macro for aligned ↵Luca Barbato2006-08-311-0/+7
| | | | | | | | declarations Update the avcodec_decode_audio and the float_to_int16 descriptions accordingly Originally committed as revision 6147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some new pixel formats to libavutilLuca Abeni2006-08-281-2/+21
| | | | Originally committed as revision 6112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compatibility warningMichael Niedermayer2006-08-201-1/+1
| | | | Originally committed as revision 6035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup PixelFormat a littleMichael Niedermayer2006-08-201-22/+36
| | | | Originally committed as revision 6034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* attribute_deprecatedMichael Niedermayer2006-08-201-0/+8
| | | | Originally committed as revision 6033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SWAPMichael Niedermayer2006-08-191-0/+2
| | | | Originally committed as revision 6030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explicitly include fastmemcpy.h from libvo/.Diego Biurrun2006-08-181-1/+1
| | | | Originally committed as revision 6021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move all internal -I parameters to the front of CFLAGS to avoid using externalDiego Biurrun2006-08-171-1/+1
| | | | | | header files that happen to have the same name as internal ones. Originally committed as revision 6016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert aligned realloc() changesm this should be identical to r5784Michael Niedermayer2006-08-171-15/+11
| | | | Originally committed as revision 6008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* trying to fix av_realloc()Michael Niedermayer2006-08-131-3/+5
| | | | Originally committed as revision 5996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* align av_realloc()Michael Niedermayer2006-08-131-10/+12
| | | | Originally committed as revision 5992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #define REGcGuillaume Poirier2006-08-121-0/+2
| | | | Originally committed as revision 5988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use C99 standard constant, thanks to Foxy ShadisBaptiste Coudurier2006-08-111-1/+1
| | | | Originally committed as revision 5986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* floating point "emulation" codeMichael Niedermayer2006-08-082-0/+155
| | | | | | unused currently, but might come in handy for some fpu-less cpus Originally committed as revision 5955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix FSF postal address.Diego Biurrun2006-07-262-2/+2
| | | | Originally committed as revision 5829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not include bswap.h in common.h for external programs, since the formerReimar Döffinger2006-07-212-2/+2
| | | | | | is not installed currently. Originally committed as revision 5809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removing redundant mess next time we break compatiilityMichael Niedermayer2006-07-202-1/+12
| | | | Originally committed as revision 5804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-07-201-5/+4
| | | | Originally committed as revision 5802 to svn://svn.ffmpeg.org/ffmpeg/trunk