summaryrefslogtreecommitdiff
path: root/libavutil
Commit message (Collapse)AuthorAge
* Make START/STOP_TIMER not require -v 2.Michael Niedermayer2008-06-08
| | | | Originally committed as revision 13711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alloc_size attribute is new to gcc 4.3; don't use it with lesser versionsMåns Rullgård2008-06-05
| | | | Originally committed as revision 13665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix embarassing __GNU__ vs. __GNUC__ typo in preprocessor condition.Rafaël Carré2008-06-03
| | | | | | patch by Rafaël Carré, funman videolan org Originally committed as revision 13652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Macro suggested by Michael which will be used to disable theStefano Sabatini2008-06-01
| | | | | | | definition of long_name strings in libavcodec and libavformat. Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a proper configure test for AltiVec vector declaration syntax.Diego Biurrun2008-05-30
| | | | Originally committed as revision 13555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that one can store X bytes in a fifo of size X.Michael Niedermayer2008-05-25
| | | | | | Fixed issue417. Originally committed as revision 13405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fifo*_read() ignore the available amount of data.Michael Niedermayer2008-05-25
| | | | | | | | | | | | This is more efficient as in practice the check is redundant most of the time. Callers which do not know if enough data is available have to check it with av_fifo_size(). Doing the check in *read() means the caller has no choice to skip the check when its known to be redundant. Also the return value was never documented in a public header so changing it should not break the API. Besides this fixes the case where read() failed on a 100% full fifo. Originally committed as revision 13404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make av_strdup(NULL) return NULLMichael Niedermayer2008-05-23
| | | | Originally committed as revision 13250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required stdint.h header.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not misuse long as the size of a register in x86.Ramiro Polla2008-05-08
| | | | | | typedef x86_reg as the appropriate size and use it instead. Originally committed as revision 13081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary parentheses from return calls.Diego Biurrun2008-05-06
| | | | Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor wording fixDiego Biurrun2008-05-06
| | | | Originally committed as revision 13068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor spelling fixDiego Biurrun2008-05-06
| | | | Originally committed as revision 13066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add necessary #includes in headersMåns Rullgård2008-05-03
| | | | Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FFMIN3Baptiste Coudurier2008-04-26
| | | | Originally committed as revision 12982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enhance documentation for AVClassStefano Sabatini2008-04-24
| | | | | | Patch by Stefano Sabatini stefanodotsabatini-lalaatpostedotit Originally committed as revision 12934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement FFMAX3(a,b,c) - maximum over three arguments.Vladimir Voroshilov2008-04-19
| | | | Originally committed as revision 12910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix des-test compilation.Diego Biurrun2008-04-18
| | | | Originally committed as revision 12889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: __asm__ __volatile__ --> asm volatileDiego Biurrun2008-04-17
| | | | Originally committed as revision 12885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless extern keyword.Stefano Sabatini2008-04-11
| | | | | | patch by Stefano Sabatini: stefano sabatini-lala poste it Originally committed as revision 12790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics (by Björn Axelsson)Benoit Fouet2008-04-09
| | | | Originally committed as revision 12774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a generic write function to av_fifo.Björn Axelsson2008-04-09
| | | | | | | | Patch by Björn Axelsson: bjorn axelsson intinor se Original thread: [FFmpeg-devel] [RFC][PATCH] av_fifo_write_from_bytestream() Date: 04/03/2008 12:14 PM Originally committed as revision 12773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-recursive makefilesMåns Rullgård2008-04-07
| | | | Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2008-04-05
| | | | Originally committed as revision 12755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge declaratio and initialization.Michael Niedermayer2008-04-03
| | | | Originally committed as revision 12677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge declaration and initialization.Michael Niedermayer2008-04-03
| | | | Originally committed as revision 12676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX partsAlexander Strange2008-03-22
| | | | | | | so that LOCAL_MANGLE can be used without EXTERN_PREFIX. patch by Alexander Strange, astrange ithinksw com Originally committed as revision 12558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing #include "common.h" to libavutil headersMåns Rullgård2008-03-19
| | | | Originally committed as revision 12502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic change: remove the whitespace after 'defined'Zuxy Meng2008-03-19
| | | | Originally committed as revision 12501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 'malloc' attribute isn't supported in old gcc.Zuxy Meng2008-03-19
| | | | Originally committed as revision 12500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply "alloc_size" attribute to av_alloc, av_realloc and av_malloczZuxy Meng2008-03-19
| | | | Originally committed as revision 12499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reapply r12489: Add pure, const and malloc attributes to proper functionsZuxy Meng2008-03-19
| | | | | | | in libavutil. Fix a compilation failure in r12489. Originally committed as revision 12498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 32/64-bit agnostic x86 bswapMåns Rullgård2008-03-18
| | | | Originally committed as revision 12496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sanitise asm() statements in bswap.hMåns Rullgård2008-03-18
| | | | Originally committed as revision 12494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r12489.Benoit Fouet2008-03-18
| | | | Originally committed as revision 12490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pure, const and malloc attributes to libavutil.Zuxy Meng2008-03-18
| | | | | | | | | Patch by Zuxy Meng: zuxy meng gmail com Original thread: [FFmpeg-devel] [PATCH] Pure, const and malloc attributes to libavutil Date: 03/18/2008 6:09 AM Originally committed as revision 12489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for prefix on extern symbols in configureMåns Rullgård2008-03-18
| | | | Originally committed as revision 12484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add REGd definitionMåns Rullgård2008-03-17
| | | | Originally committed as revision 12481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationDiego Biurrun2008-03-17
| | | | Originally committed as revision 12471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify MANGLE macro preprocessor condition checks.Diego Biurrun2008-03-17
| | | | Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MANGLE macro on Mac OS X.İsmail Dönmez2008-03-17
| | | | | | | Allows compiling a 64 bit FFmpeg on Mac OS X without using --disable-mmx. patch by İsmail Dönmez ismail namtrac org Originally committed as revision 12468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include stddef.h instead of sys/types.h, the former is a standard C header.Diego Biurrun2008-03-13
| | | | Originally committed as revision 12435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include stdint.h instead of inttypes.h like all libavutil headers do.Diego Biurrun2008-03-13
| | | | Originally committed as revision 12433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #include "config.h" to headers that need it.Diego Biurrun2008-03-13
| | | | Originally committed as revision 12431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing stdint.h #include to headers that use it.Diego Biurrun2008-03-13
| | | | Originally committed as revision 12429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-12
| | | | Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2008-03-10
| | | | Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #error in case we do not know how to provide alignment.Diego Biurrun2008-03-08
| | | | Originally committed as revision 12382 to svn://svn.ffmpeg.org/ffmpeg/trunk