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-27lavf: remove disabled FF_API_OLD_AVIO cruftAnton Khirnov
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-13avio: add avio_open2, taking an interrupt callback and optionsMartin Storsjö
The interrupt callback has to be passed in during opening (setting it after opening isn't enough), since a blocking open couldn't be interrupted otherwise. Options are passed down to procotols and also need to be available during open() in most cases. Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 and use ffurl_protocol_next().Anton Khirnov
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-13avio: Add an internal utility function for checking the new interrupt callbackMartin Storsjö
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-11-13avio: Add AVIOInterruptCBMartin Storsjö
This is a better io interrupt callback function, which has an opaque parameter, which is given to the interrupt callback. This allows callers to precisely cancel IO for one single AVFormatContext, without interrupt other ones in the same process. Note, it's not needed in AVIOContext, at the moment. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-07-14doxygen: Make sure parameter names match between .c and .h files.Diego Biurrun
2011-05-21multiple inclusion guard cleanupDiego Biurrun
Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent.
2011-04-13avio: add avio_check()Stefano Sabatini
The new function is more flexible than url_exist(), as it allows to specify which access flags to check, and does not require an explicit open of the checked resource. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-08avio: make URLProtocol internal.Anton Khirnov
2011-04-08avio: make URLContext internal.Anton Khirnov
2011-04-08avio: move two ff_udp_* functions from avio_internal to url.hAnton Khirnov
2011-04-08avio: deprecate the typedef for URLInterruptCBAnton Khirnov
There's no particular reason to pollute the namespace with a typedef for it.
2011-04-07avio: move extern url_interrupt_cb declaration from avio.h to url.hAnton Khirnov
2011-04-07avio: make av_register_protocol2 internal.Anton Khirnov
2011-04-05avio: make URL_PROTOCOL_FLAG_NESTED_SCHEME internalAnton Khirnov
2011-04-04avio: make url_get_file_handle() internal.Anton Khirnov
2011-04-04avio: make url_filesize() internal.Anton Khirnov
2011-04-04avio: make url_close() internal.Anton Khirnov
2011-04-04avio: make url_seek() internal.Anton Khirnov
2011-04-04avio: make url_write() internal.Anton Khirnov
2011-04-04avio: make url_read_complete() internal.Anton Khirnov
2011-04-04avio: make url_read() internal.Anton Khirnov
2011-04-04avio: make url_open() internal.Anton Khirnov
2011-04-04avio: make url_connect internal.Anton Khirnov
2011-04-04avio: make url_alloc internal.Anton Khirnov