- 03 Oct, 2012 1 commit
-
-
Mans Rullgard authored
There are cases where strncpy() does exactly what is required. A blanket ban forces more convoluted solutions to be used in those cases and has been a cause of bugs. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 30 Aug, 2012 1 commit
-
-
Diego Biurrun authored
-
- 10 Aug, 2012 1 commit
-
-
Mans Rullgard authored
This makes struct AVDictionary fully opaque now that nothing needs to access it directly any more. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 09 Aug, 2012 3 commits
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
The only compiler I have that does not define the standard offsetof() macro is "Bruce's C Compiler", a simple compiler for producing 8/16-bit 8086 code, usually for use in early stages of PC booting. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This list is incomplete (we also use UINT16_MAX), so there does not appear to be any system we care about that needs these. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 08 Aug, 2012 2 commits
-
-
Mans Rullgard authored
This macro is only used in two places, both in libavcodec, so this is a more sensible place for it. Two small tweaks to the macro are made: - removing the trailing semicolon - dropping unnecessary 'volatile' from the x86 asm Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
These x86-specific macros do not belong in generic code. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 10 Jul, 2012 1 commit
-
-
Ronald S. Bultje authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de> Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 25 Jun, 2012 1 commit
-
-
Ronald S. Bultje authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 12 Dec, 2011 1 commit
-
-
Diego Biurrun authored
-
- 06 Nov, 2011 1 commit
-
-
Reimar Döffinger authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 08 Jun, 2011 1 commit
-
-
Anton Khirnov authored
Rename it to AVDictionary, since it will be used as such. Tags documentation and metadata conversion API is lavf-specific, so remains there.
-
- 05 Jun, 2011 1 commit
-
-
Diego Biurrun authored
-
- 24 May, 2011 1 commit
-
-
Ronald S. Bultje authored
-
- 08 May, 2011 1 commit
-
-
Alex Converse authored
-
- 23 Mar, 2011 1 commit
-
-
Mans Rullgard authored
With unknown attribute warnings disabled, these checks are no longer needed. Removing them improves readability while having no effect on generated code. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 09 Feb, 2011 1 commit
-
-
Alexander Strange authored
See doc/multithreading.txt for details on use in codecs. Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- 31 Jan, 2011 1 commit
-
-
Mans Rullgard authored
This is consistent with most of the other attribute macros. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 29 Jan, 2011 1 commit
-
-
Luca Barbato authored
dprintf clashes with POSIX.1-2008
-
- 10 Nov, 2010 1 commit
-
-
Carl Eugen Hoyos authored
Intel C compiler 12.0 does not suport these attributes: may_alias, force_align_arg_pointer and alloc_size. Originally committed as revision 25716 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 17 Jul, 2010 1 commit
-
-
Carl Eugen Hoyos authored
Originally committed as revision 24290 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 30 Jun, 2010 2 commits
-
-
Måns Rullgård authored
Originally committed as revision 23911 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 16 Jun, 2010 1 commit
-
-
Michael Niedermayer authored
Originally committed as revision 23622 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 15 Jun, 2010 2 commits
-
-
Måns Rullgård authored
Originally committed as revision 23615 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
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
-
- 13 May, 2010 1 commit
-
-
Michael Niedermayer authored
also attributes.h is public and external api and can thus not depend on configure tested compiler support thus this part is removed. A different solution must be found if this breaks for some compiler which i hope it does not. Originally committed as revision 23115 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 20 Apr, 2010 1 commit
-
-
Diego Biurrun authored
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Mar, 2010 2 commits
-
-
Måns Rullgård authored
This reduces the number of false dependencies on header files and speeds up compilation. Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
ffmpeg.c uses lrintf(), which is missing on some systems. Previously it picked up the replacement via libavutil/internal.h due to HAVE_AV_CONFIG_H being erroneously defined. Moving these replacements to a separate header enables ffmpeg.c to use them without being exposed to internal interfaces. This use of a non-public header is justified by the header in question not being part of the internal interface either. It should rather be considered as part of the build system, which is shared between the libraries and the applications. This header cannot be installed since the tested conditions depend on the compiler. Originally committed as revision 22399 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Mar, 2010 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 20 Feb, 2010 2 commits
-
-
Måns Rullgård authored
Originally committed as revision 21922 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Carl Eugen Hoyos authored
Originally committed as revision 21917 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Feb, 2010 1 commit
-
-
Måns Rullgård authored
This fixes building on some broken systems. Originally committed as revision 21735 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 29 Jan, 2010 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 21523 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 20 Jan, 2010 1 commit
-
-
Måns Rullgård authored
This obscure macro is only used in motion_est.c so having it in lavc makes more sense. See discussion here: http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2008-November/056561.html Originally committed as revision 21346 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 19 Jan, 2010 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 21335 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 16 Jan, 2010 1 commit
-
-
Vitor Sessak authored
functions: exp2, exp2f, log2, log2f. Should fix compilation in systems where these functions are defined in math.h but not implemented. Originally committed as revision 21231 to svn://svn.ffmpeg.org/ffmpeg/trunk
-