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-01-06avio: Add an URLProtocol flag for indicating that a protocol uses networkMartin Storsjö
This definition is in two files, since the definitions will move to the private header at the next bump. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-28Eliminate pointless 0/NULL initializers in AVCodec and similar declarations.Diego Biurrun
2011-11-18tls: Handle connection via a http proxyMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-17tls: Use TLSv1_client_method for OpenSSLMartin Storsjö
TLSv1 is compatible with SSLv3, so this doesn't change much in terms of compatibility. By explicitly using TLSv1, OpenSSL sends the server name indication (SNI) header, which we already set using SSL_set_tlsext_host_name (earlier, this didn't have any effect). SNI allows servers to serve SSL content for different host names with separate certificates on one single port (vhosts). Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-13avio: add support for passing options to protocols.Anton Khirnov
Not used anywhere yet, support for passing options from avio_open() will follow.
2011-11-13avio: Add an AVIOInterruptCB parameter to ffurl_open/ffurl_allocMartin Storsjö
Change all uses of these function to pass the relevant callback on.
2011-11-13avformat: Use ff_check_interruptMartin Storsjö
2011-11-11tls: Use the URLContext as logging contextMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-10tls: use AVIO_FLAG_NONBLOCK instead of deprecated URL_FLAG_NONBLOCKAnton Khirnov
2011-11-09tls: Use ERR_get_error() in do_tls_pollMartin Storsjö
The return value ret isn't an error code that can be passed to ERR_error_string(). This makes the error messages printed actually contain useful information. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-05avformat: Add the tls protocol, using OpenSSL or gnutlsMartin Storsjö
Note, this protocol doesn't yet check verify the server certificate against a local database of trusted CA root certificates. Signed-off-by: Martin Storsjö <martin@martin.st>