aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil
Commit message (Collapse)AuthorAgeFilesLines
* Use filename as multiple inclusion guard.Diego Biurrun2007-10-171-3/+3
| | | | Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc Doxygen spelling/grammar fixesDiego Biurrun2007-10-151-9/+9
| | | | Originally committed as revision 10754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rc4 header, #ifndef -> #defineReimar Döffinger2007-10-141-1/+1
| | | | Originally committed as revision 10733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add multiple inclusion guards.Diego Biurrun2007-10-141-0/+5
| | | | Originally committed as revision 10732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add standard license header.Diego Biurrun2007-10-141-0/+20
| | | | Originally committed as revision 10731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently place comments in file header.Diego Biurrun2007-10-141-2/+2
| | | | Originally committed as revision 10730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sort()Diego Biurrun2007-10-141-1/+1
| | | | Originally committed as revision 10729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RC4 encryption/decryption functionReimar Döffinger2007-10-133-0/+50
| | | | Originally committed as revision 10723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for yuva420p colorspace (yuv420p + alpha)Aurelien Jacobs2007-09-241-0/+1
| | | | Originally committed as revision 10565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document libavutil/mem.h:av_strdup.Stefano Sabatini2007-09-091-0/+7
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Sort some lines, whitespace changes.Diego Biurrun2007-08-301-19/+31
| | | | Originally committed as revision 10268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change SYS_DARWIN preprocessor checks to __APPLE__, they are specificDiego Biurrun2007-08-271-1/+1
| | | | | | to Mac OS X rather than to Darwin. Originally committed as revision 10247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move Apple gcc AltiVec vector declaration syntax to libavutil.Diego Biurrun2007-08-241-0/+7
| | | | Originally committed as revision 10207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).Diego Biurrun2007-08-221-1/+1
| | | | Originally committed as revision 10190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Additional documentation for CRC functionsReimar Döffinger2007-08-201-0/+16
| | | | Originally committed as revision 10151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use defines instead of raw hex numbers to specify CRC polynomialsReimar Döffinger2007-08-192-4/+11
| | | | Originally committed as revision 10143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_7REGS -> HAVE_7REGSRamiro Polla2007-08-151-1/+1
| | | | Originally committed as revision 10121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add attribute that forces alignment of stack to functions that need it.Ramiro Polla2007-08-131-0/+8
| | | | | | | | | Necessary for systems that don't align by default to 16 bytes, required by some SSE instructions. Requires GCC >= 4.2. Based on patch by Gaël Chardon. Originally committed as revision 10106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a new av_clip_int16() function to libavutilAurelien Jacobs2007-08-112-2/+13
| | | | Originally committed as revision 10076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ensure av_noinline is always definedAurelien Jacobs2007-08-111-1/+7
| | | | Originally committed as revision 10075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)Roman Shaposhnik2007-08-091-36/+36
| | | | Originally committed as revision 10023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Making [START|STOP]_TIMER work on architectures that support gethrtime()Roman Shaposhnik2007-08-091-2/+7
| | | | Originally committed as revision 9998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_strlcatf(): a strlcat which adds a printf style formatted stringLuca Abeni2007-07-192-0/+28
| | | | Originally committed as revision 9753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document aes init code writing on purpose beyond round_key array into state ↵Reimar Döffinger2007-07-181-0/+2
| | | | | | array. Originally committed as revision 9734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add YUV440P and YUVJ440P supportAndreas Öman2007-07-181-0/+2
| | | | | | | | patch by Andreas Öman: \andreas olebyn nu/ original thread: [FFmpeg-devel] half vertical chroma resolution from JPEGs.. date: 07/03/2007 01:29 PM Originally committed as revision 9732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move #include of system headers to top of fileMåns Rullgård2007-07-141-6/+6
| | | | Originally committed as revision 9646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to Mans, assert is included later with proper DEBUG/NDEBUG ifdefsAlex Beregszaszi2007-07-141-1/+0
| | | | Originally committed as revision 9636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* match doxygen comment with other parts of the fileAlex Beregszaszi2007-07-141-1/+1
| | | | Originally committed as revision 9635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary MINGW ifdef.Ramiro Polla2007-07-111-10/+0
| | | | | | These were added for MSVC++, which is no longer supported. Originally committed as revision 9595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove MinGW lrint hack.Ramiro Polla2007-07-111-14/+0
| | | | | | It has been in mingw-runtime at least since version 2.4 Originally committed as revision 9594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove OS/2 supportRamiro Polla2007-07-101-7/+1
| | | | Originally committed as revision 9586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix av_str[i]start()Måns Rullgård2007-07-101-2/+8
| | | | Originally committed as revision 9585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undef forbidden names before we #define them in case they are macros in libcMåns Rullgård2007-07-081-0/+12
| | | | Originally committed as revision 9545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-058-8/+2
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-051-11/+11
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make error message more helpful and forbid random()Vitor Sessak2007-07-051-2/+3
| | | | Originally committed as revision 9472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move comment to a slightly better place.Diego Biurrun2007-07-021-2/+2
| | | | Originally committed as revision 9462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove leading underscores from specifiers, they are reserved.Diego Biurrun2007-07-022-4/+4
| | | | Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add proper license header.Diego Biurrun2007-06-272-3/+40
| | | | Originally committed as revision 9444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* intreadwrite.h needs bswap.h if HAVE_FAST_UNALIGNED is set, so include it.Reimar Döffinger2007-06-241-0/+1
| | | | Originally committed as revision 9414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more av_strl* adjustmentsReimar Döffinger2007-06-241-1/+1
| | | | Originally committed as revision 9412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bump micro version: new string functionsLuca Barbato2007-06-241-2/+2
| | | | Originally committed as revision 9405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some string functionsMåns Rullgård2007-06-233-1/+136
| | | | Originally committed as revision 9400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify comments about PIX_FMT_MONOWHITE/MONOBLACKMichel Bardiaux2007-06-201-2/+2
| | | | | | Thread: PIX_FMT_MONOWHITE Originally committed as revision 9373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a comment to indicate which #endif belong to which #defineGuillaume Poirier2007-06-172-2/+2
| | | | Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add multiple inclusion guards to headersMåns Rullgård2007-06-172-0/+9
| | | | Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include all prerequisites in header filesMåns Rullgård2007-06-1613-0/+29
| | | | Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Blackfin - read_time primitiveMarc Hoffman2007-06-131-1/+14
| | | | | | | note this primitive currently uses a union to concatenate 2x32bit registers because of poor compiler support around DImode and asm. Originally committed as revision 9302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-122-11/+11
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Part of MPlayer patch:Reimar Döffinger2007-06-051-0/+1
| | | | | | | | "Replace implicit use of fast_memcpy via macro by explicit use to allow for future optimization." This is not yet done for ffmpeg when compiled within MPlayer. Originally committed as revision 9225 to svn://svn.ffmpeg.org/ffmpeg/trunk