- 26 May, 2014 1 commit
-
-
Nicolas George authored
-
- 10 Mar, 2014 1 commit
-
-
Anton Khirnov authored
The values of {FLT,DBL}_{MAX,MIN} macros on some systems (older musl libc, some BSD flavours) are not exactly representable, i.e. (double)DBL_MAX == DBL_MAX is false This violates (at least some interpretations of) the C99 standard and breaks code (e.g. in vf_fps) like double f = DBL_MAX; [...] if (f == DBL_MAX) { // f has not been changed yet [....] }
-
- 06 Mar, 2014 1 commit
-
-
Andreas Cadhalpun authored
Correct the FSF address for two avisynth files to '51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA' Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 30 Dec, 2013 1 commit
-
-
Reimar Döffinger authored
Since we have this compat/va_copy.h header already we might just as well make use of it for more than one compiler. Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 24 Nov, 2013 1 commit
-
-
Derek Buitenhuis authored
This allows MSVC 2013 and ICL to build with no external dependencies. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 07 Nov, 2013 1 commit
-
-
Dave Yeo authored
Signed-off-by:
Dave Yeo <daveryeo@telus.net> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 06 Nov, 2013 1 commit
-
-
Diego Biurrun authored
The macros forbidding the system functions no longer exist, obviating the need for the #undefs.
-
- 27 Aug, 2013 2 commits
-
-
Martin Storsjö authored
This reverts commit 4622f11f. The compiler should be able to do the dead code elimination now without this when the cond_* names point directly to the real functions instead of to local function pointers. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
This reduces the call overhead slightly. More noticeably, it restores the earlier (unintended?) feature that condition variable functions work just fine even if w32thread_init() hasn't been called. This was broken as a side effect of 4622f11f, if explicitly targeting Vista+. This makes w32threading work in VP8 again, if targeting Vista+. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 21 Aug, 2013 1 commit
-
-
Rafaël Carré authored
The emulation code is not needed when targetting Vista+ This helps getting rid of CreateSemaphore symbol, which is forbidden in Windows Store apps. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 17 Aug, 2013 1 commit
-
-
Stephen Hutchinson authored
Uses the 2.5 compatibility header included with the variant of FFMS2 that uses AviSynth's C-interface. A copy of this header is now provided in compat/avisynth. avs_get_row_size_p and avs_get_height_p changed between versions 2.5 and 2.6. Since the avisynth_c.h header that avformat uses assumes AviSynth 2.6, it would cause 2.5 to crash if given any kind of real video (the Version() function was known to work, though). AvxSynth was unaffected by this issue because, despite being based on AviSynth 2.5.8 and using 2.5.8's interface version number of 3, it actually uses 2.6's versions of these functions. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 18 Jul, 2013 2 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
Also fix a comment and an #endif comment.
-
- 04 Jul, 2013 1 commit
-
-
Luca Barbato authored
AIX defines a class() function in its math.h header without any guard.
-
- 28 May, 2013 1 commit
-
-
Dave Yeo authored
For useage in other places besides lavc. Needed after commit 90f9a583Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 24 May, 2013 1 commit
-
-
Anton Khirnov authored
It will be used in other places than lavc.
-
- 21 Mar, 2013 1 commit
-
-
Stephen Hutchinson authored
The versions of the headers are the same as those provided with x264 for consistency's sake.
-
- 07 Mar, 2013 1 commit
-
-
Reimar Döffinger authored
Make sure the behavior does not change with the locale. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 04 Mar, 2013 1 commit
-
-
Clément Bœsch authored
This should fix build after 88d55b82.
-
- 03 Mar, 2013 1 commit
-
-
Reimar Döffinger authored
As far as I can tell the code should not change behaviour depending on locale in any of these places. Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 23 Oct, 2012 1 commit
-
-
Mans Rullgard authored
This adds support for building on Plan 9 x86-32. The compat/plan9 directory contains these items: - replacements for the 'head' and 'printf' shell commands - wrapper for main() to disable FPU exceptions Larger required changes to the system are described in the documentation. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 21 Oct, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Oct, 2012 1 commit
-
-
Mans Rullgard authored
The glibc definitions of INFINITY and NAN do not work with the tms470 compiler, nor do our usual fallbacks. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 25 Sep, 2012 1 commit
-
-
Derek Buitenhuis authored
All versions of MinGW-w64 prior to version 3, as well as all versions of MinGW32 have broken implementations of vsnprintf. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 15 Sep, 2012 3 commits
-
-
Ronald S. Bultje authored
This conforms to C99, but requires Windows >= XP.
-
Derek Buitenhuis authored
Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Ronald S. Bultje authored
This conforms to C99, but requires Windows >= XP. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 06 Sep, 2012 1 commit
-
-
Michael Niedermayer authored
This reverts commit ba537202. A better implementation has been commited by the same author to qatar Conflicts: configure Found-by:
jamal <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 05 Sep, 2012 1 commit
-
-
Ronald S. Bultje authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 28 Aug, 2012 1 commit
-
-
Ronald S. Bultje authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 16 Aug, 2012 2 commits
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 11 Jul, 2012 1 commit
-
-
Ronald S. Bultje authored
This allows compiling and running these tests on systems lacking a built- in version of getopt(), such as MSVC. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-