- 11 May, 2011 1 commit
-
-
Diego Biurrun authored
The softfloat functionality is unused, not installed and incomplete. On platforms without floating point units, the compiler provides a softfloat implementation so there is no point in carrying this code around locally.
-
- 19 Apr, 2011 1 commit
-
-
Anton Khirnov authored
-
- 14 Apr, 2011 1 commit
-
-
Alexis Ballier authored
The functions are already av_ prefixed and sha1 header is already provided. Install libavutil/{aes,sha}.h Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 15 Feb, 2011 1 commit
-
-
Reinhard Tartler authored
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by:
Reinhard Tartler <siretart@tauware.de>
-
- 22 Dec, 2010 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 26073 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Oct, 2010 1 commit
-
-
Stefano Sabatini authored
Fix issue #2265. Originally committed as revision 25420 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 01 Oct, 2010 1 commit
-
-
Måns Rullgård authored
This avoids conflicts with the system assert.h. Originally committed as revision 25284 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 30 Sep, 2010 1 commit
-
-
Michael Niedermayer authored
With this the developer can now choose if he wants an assert always enabled or at which compile time assert level. This can thus replace the #define NDEBUG hacks Originally committed as revision 25278 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 26 Sep, 2010 1 commit
-
-
Michael Niedermayer authored
Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Sep, 2010 1 commit
-
-
Måns Rullgård authored
Instead of defining functions in per-arch header files included by the main cpu.c, define them normally and call them from the generic one. Originally committed as revision 25084 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Sep, 2010 1 commit
-
-
Stefano Sabatini authored
function and rename it to av_get_cpu_flags(). Originally committed as revision 25076 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 04 Sep, 2010 1 commit
-
-
Stefano Sabatini authored
symbols, and move them from libavcodec/avcodec.h to libavutil/cpu.h. Originally committed as revision 25040 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 Jul, 2010 1 commit
-
-
Diego Pettenò authored
The ff_inverse table is used by FASTDIV macro, defined in libavutil, but up to now the table was defined only in libavcodec. After this change, the main copy of ff_inverse is part of libavutil (just like FASTDIV), but if CONFIG_SMALL is unset, then a different copy is made available to libavcodec, to avoid the performance penalty of using an external look up table. Dynamic linking works, because the libraries are linked with -Bsymbolic, so the local copy of the symbol has priority over the external; static linking works because the table is on a standalone object file in both libraries, so the linker is able to discard one of the two. Tested on Linux/x86-64 and Mac OS X/x86-64. Originally committed as revision 24383 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 10 Jul, 2010 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 24174 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 02 Jul, 2010 1 commit
-
-
Ramiro Polla authored
Originally committed as revision 23985 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 05 Jun, 2010 1 commit
-
-
Stefano Sabatini authored
API public. Originally committed as revision 23485 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 23 May, 2010 1 commit
-
-
Martin Storsjö authored
Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 25 Mar, 2010 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 22684 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 13 Mar, 2010 1 commit
-
-
Stefano Sabatini authored
libavutil/error.h. Error code definitions and handling code belong to libavutil, where they can be shared by all the libav* libraries. See the thread: Subject: [FFmpeg-devel] [PATCH] Move error codes definitions from lavc to lavu Date: Sun, 19 Jul 2009 12:09:16 +0200 Originally committed as revision 22501 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Mar, 2010 2 commits
-
-
Måns Rullgård authored
Originally committed as revision 22346 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Some of the per-arch headers are only meant to be used through the parent header of the same name. Testing these standalone does not make sense. Originally committed as revision 22341 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 19 Jan, 2010 1 commit
-
-
Måns Rullgård authored
This file contains a safe subset of the config.h settings. Only bigendian is included for now, more can be added as need arises. Originally committed as revision 21321 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 24 Nov, 2009 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 20603 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 10 Jul, 2009 1 commit
-
-
Kostya Shishkov authored
and leave av_sha1_* functions for compatibility until next major bump. Originally committed as revision 19394 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Jun, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 19135 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Apr, 2009 1 commit
-
-
Diego Biurrun authored
in libavutil when this function is available. Originally committed as revision 18386 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 02 Apr, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 18320 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 26 Mar, 2009 1 commit
-
-
Diego Biurrun authored
This is robust against renames and also removes test programs not (yet) hooked up in the main Makefiles. Originally committed as revision 18193 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 25 Mar, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 18189 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 22 Mar, 2009 1 commit
-
-
Diego Biurrun authored
'test' target and a directory named tests exists. Originally committed as revision 18165 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 Mar, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 18116 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Mar, 2009 2 commits
-
-
Michael Niedermayer authored
We provide better PRNGs. Originally committed as revision 17872 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Baptiste Coudurier authored
Originally committed as revision 17868 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 22 Feb, 2009 1 commit
-
-
Stefano Sabatini authored
dedicated file pixfmt.h. Originally committed as revision 17528 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 06 Feb, 2009 1 commit
-
-
Stefano Sabatini authored
See the thread: "[PATCH] remove unused and broken test program in libavutil/base64.c". Originally committed as revision 17025 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 29 Jan, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 16853 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 11 Jan, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 16559 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 20 Nov, 2008 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 15896 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 26 Oct, 2008 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 15717 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 17 Aug, 2008 1 commit
-
-
Justin Ruggles authored
Originally committed as revision 14815 to svn://svn.ffmpeg.org/ffmpeg/trunk
-