Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/compat
AgeCommit message (Collapse)Author
2012-10-23build: Plan 9 supportMans Rullgard
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>
2012-10-13build: tms470: work around glibc math.h problemsMans Rullgard
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>
2012-09-15compat/vsnprintf: return number of bytes required on truncation.Ronald S. Bultje
This conforms to C99, but requires Windows >= XP. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2012-09-05lavu: add snprintf(), vsnprint() and strtod() replacements for MS runtime.Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-17getopt: Remove an unnecessary defineMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-16getopt: Add missing includesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-11dct/fft-test: use a replacement getopt() if the system has none present.Ronald S. Bultje
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>