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
AgeCommit message (Collapse)Author
2012-12-05Remove pointless #undefs of previously forbidden functions.Anton Khirnov
2012-10-27network: use HAVE_THREADS instead of local hackMans Rullgard
HAVE_THREADS is set in config.h if pthreads or w32threads is available, which presumably the proper condition here. Also fixes undefined behaviour in preprocessor directives. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-16Add some more missing includes after removing the implicit common.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-26network: Don't redefine error codes if they already exist in errno.hRonald S. Bultje
Since the errno.h values don't match the error codes that winsock returns, map the winsock error codes to the errno ones, to make sure explicit checks against AVERROR(x) match. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-28cosmetics: Remove extra newlines at EOFAlex Converse
2011-12-21network: properly declare WSADATA in windowsSergey Radionov
Fixed "ISO C90 forbids mixed declarations and code" in ff_network_init Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-11-07avformat: Warn about using network functions without calling ↵Martin Storsjö
avformat_network_init This is to make developers aware of the fact that they will start using the new init function at some point. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-06openssl: Only use CRYPTO_set_id_callback on OpenSSL < 1.0.0Martin Storsjö
Since 1.0.0, this function is deprecated. A new function, CRYPTO_THREADID_set_callback is available, but if not set at all, it uses the address of errno as thread id, which should be sufficient for most systems. On windows, it never was necessary to use this function even before 1.0.0, it used the right win32 API function for this by default. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-05avformat: Initialize gnutls in ff_tls_init()Martin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-05avformat: Add ff_tls_init()/deinit() that initialize OpenSSLMartin Storsjö
If the application hasn't set up mutex callbacks, we set up our own using pthreads (or w32pthreads). Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-05avformat: Split out functions from network.h to a new file, network.cMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>