summaryrefslogtreecommitdiff
path: root/libavutil
Commit message (Collapse)AuthorAge
* Change i to unsigned in get_generic_seed().Michael Niedermayer2010-07-08
| | | | | | | This is clearer than comparing against an unsigned number to force an unsigned comparison that we need. Originally committed as revision 24114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Restore array sizes in doxygen parameter names.Diego Biurrun2010-07-08
| | | | Originally committed as revision 24108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_generic_seed() for the cases without /dev/random and AV_READ_TIMEMichael Niedermayer2010-07-07
| | | | Originally committed as revision 24102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename read/write_line() to av_read/write_image_line().Stefano Sabatini2010-07-07
| | | | | | | | | The old names were not av_ prefixed, and they were causing linking failure on many platforms. The new names are also more descriptive. Patch by Stefano Sabatini. Originally committed as revision 24101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: optimised integer clip functionsMåns Rullgård2010-07-07
| | | | Originally committed as revision 24089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: intmath.h cosmeticsMåns Rullgård2010-07-07
| | | | Originally committed as revision 24088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow arch-overrides for all common.h clip and log2 functionsMåns Rullgård2010-07-07
| | | | Originally committed as revision 24087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove macro duplication between common.h and intmath.hMåns Rullgård2010-07-07
| | | | Originally committed as revision 24086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* intmath: whitespace cosmeticsMåns Rullgård2010-07-07
| | | | Originally committed as revision 24085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aes: fix array index out of bounds warningMåns Rullgård2010-07-04
| | | | Originally committed as revision 24048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence "comparison of unsigned expression >= 0 is always true" warning.Eli Friedman2010-07-03
| | | | | | Patch by Eli Friedman, eli d friedman a gmail Originally committed as revision 24022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mix function more readable.Reimar Döffinger2010-07-02
| | | | | | Compiler output unchanged with gcc 4.4. Originally committed as revision 24006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avutil: bump minor version for r23985 (install lfg.h)Ramiro Polla2010-07-02
| | | | Originally committed as revision 23997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avutil: install lfg.hRamiro Polla2010-07-02
| | | | Originally committed as revision 23985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix parameter name and position in av_crc_init Doxygen documentation.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid square brackets in Doxygen comments; Doxygen chokes on them.Diego Biurrun2010-07-02
| | | | Originally committed as revision 23979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add parameter names to av_log/av_vlog function declarations.Diego Biurrun2010-07-02
| | | | | | Doxygen gets confused without an explicit parameter name. Originally committed as revision 23972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misspelled parameter names in Doxygen documentation.Diego Biurrun2010-07-02
| | | | | | This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move colorspace.h from libavcodec to libavutil.Stefano Sabatini2010-07-01
| | | | | | Avoid a compile-time dependency of the pad filter on libavcodec. Originally committed as revision 23940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* random_seed: simplifyMåns Rullgård2010-07-01
| | | | Originally committed as revision 23932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMåns Rullgård2010-07-01
| | | | Originally committed as revision 23931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* random_seed: allow to block on /dev/randomMåns Rullgård2010-07-01
| | | | | | | | | | If both /dev/random and /dev/urandom failed to return data, an uninitialised value might be returned. Since most systems have a non-blocking /dev/urandom or have /dev/random with similar properties, the chance of blocking is minimal, and the alternative of returning non-random data is worse. Originally committed as revision 23930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve FF_SYMVER documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve av_strerror() documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve GET_UTF{8,16} documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aes: improve av_aes_crypt() documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23908 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adler32: add API documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* base64: improve documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_get_random_seed() non-blockingMåns Rullgård2010-06-30
| | | | | | | Attempt to read from /dev/urandom and /dev/random with O_NONBLOCK set. If neither succeeds, proceed with fallbacks. Originally committed as revision 23903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change AES code to be strict-aliasing-safe.Reimar Döffinger2010-06-30
| | | | | | | | | Makes it give correct results with e.g. gcc 4.4. For unknown reasons the generate asm code also changes on e.g. gcc 4.3, making the code a bit larger but also a bit faster. Originally committed as revision 23896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass subshift an argument of the proper type.Reimar Döffinger2010-06-28
| | | | | | No changes in generated code. Originally committed as revision 23856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a consistent type for multbl array function parameters.Reimar Döffinger2010-06-28
| | | | Originally committed as revision 23855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing avutil.h include to libavutil/mem.hMåns Rullgård2010-06-26
| | | | Originally committed as revision 23803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a space after the AVClass prefix.Jai Menon2010-06-25
| | | | | | This improves readability a bit. Originally committed as revision 23767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_clip_int8(), used in the upcoming VP8 decoder.Ronald S. Bultje2010-06-22
| | | | Originally committed as revision 23713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing parentheses in MKTAG and MKBETAG macros.Benoit Fouet2010-06-22
| | | | Originally committed as revision 23711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more tests to eval, help detecting some of the more apparentStefano Sabatini2010-06-16
| | | | | | errors, far from being a complete test system. Originally committed as revision 23635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_parse_expr() fail if there are trailing chars at the end ofStefano Sabatini2010-06-16
| | | | | | | | the provided expression. Allow detection of mistyped expressions. Originally committed as revision 23629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve av_parse_eval() error reporting.Stefano Sabatini2010-06-16
| | | | Originally committed as revision 23627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* icc 12 finally fixed attribute(used) so gcc's DECLARE_ASM_CONST can be used.Carl Eugen Hoyos2010-06-16
| | | | Originally committed as revision 23624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document FF_SYMVER and attribute_usedMichael Niedermayer2010-06-16
| | | | Originally committed as revision 23622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix symbol version compat wrappers on systems with export prefixesMåns Rullgård2010-06-15
| | | | Originally committed as revision 23615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add compatibility wrappers for functions moved from lavf to lavcMåns Rullgård2010-06-15
| | | | | | | | When symbol versioning is enabled, moving symbols from one library to another breaks binary compatibility. This adds wrappers with the old version tag for the av_*packet functions recently moved to lavc. Originally committed as revision 23611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on windows CEMartin Storsjö2010-06-14
| | | | Originally committed as revision 23600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix av_compare_mod() doxy.Stefano Sabatini2010-06-13
| | | | Originally committed as revision 23593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry and bump minor after av_compare_mod() addition.Stefano Sabatini2010-06-13
| | | | Originally committed as revision 23592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* log.c: Use parameter passed to macro instead of the equivalent local variableRamiro Polla2010-06-09
| | | | | | in the only function that uses the macro. Originally committed as revision 23555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add win32 console color output.Ramiro Polla2010-06-09
| | | | | | Based on patches by James Darnley <james dot darnley at gmail dot com>. Originally committed as revision 23554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ansi color array to outside of av_log_default_callback(). Do not passRamiro Polla2010-06-09
| | | | | | | ansi color code to colored_fputs(), and pass instead the error level so the proper color code may be used. Originally committed as revision 23553 to svn://svn.ffmpeg.org/ffmpeg/trunk