summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
Commit message (Collapse)AuthorAge
* avio: deprecate url_exist in favor of avio_check.Anton Khirnov2011-04-13
|
* avio: add avio_check()Stefano Sabatini2011-04-13
| | | | | | | | 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>
* avio: left-shift AVIO_ flags on next bumpAnton Khirnov2011-04-13
| | | | Now AVIO_RDONLY is defined as 0, so it's not usable as a flag.
* avio: undeprecate av_url_read_fseek/fpause under nicer namesAnton Khirnov2011-04-12
| | | | It seems their replacements won't be ready anytime soon.
* avio: add more documentation for AVIOContext.Anton Khirnov2011-04-10
|
* avio: document some members of AVIOContext.Anton Khirnov2011-04-10
|
* avio: document avio_close().Anton Khirnov2011-04-10
|
* avio: cosmetics, vertically align comments.Anton Khirnov2011-04-10
|
* avio: cosmetics, group the reading functions.Anton Khirnov2011-04-10
|
* avio: cosmetics, merge all the FF_API_OLD_AVIO blocks.Anton Khirnov2011-04-10
|
* avio: cosmetics, move AVIOContext to start of the file.Anton Khirnov2011-04-10
|
* avio: update file header.Anton Khirnov2011-04-10
|
* avio: deprecate av_protocol_next().Anton Khirnov2011-04-08
|
* avio: add a function for iterating though protocol names.Anton Khirnov2011-04-08
|
* avio: make URLProtocol internal.Anton Khirnov2011-04-08
|
* avio: make URLContext internal.Anton Khirnov2011-04-08
|
* avio: deprecate the typedef for URLInterruptCBAnton Khirnov2011-04-08
| | | | | There's no particular reason to pollute the namespace with a typedef for it.
* avio: move extern url_interrupt_cb declaration from avio.h to url.hAnton Khirnov2011-04-07
|
* avio: make av_register_protocol2 internal.Anton Khirnov2011-04-07
|
* avio: avio_ prefix for url_set_interrupt_cb.Anton Khirnov2011-04-07
|
* avio: AVIO_ prefixes for URL_ open flags.Anton Khirnov2011-04-07
|
* avio: make URL_PROTOCOL_FLAG_NESTED_SCHEME internalAnton Khirnov2011-04-05
|
* avio: deprecate av_url_read_seekAnton Khirnov2011-04-05
| | | | | | It's not used anywhere internally. Salvage its documentation for ffio_read_seek.
* avio: deprecate av_url_read_pauseAnton Khirnov2011-04-05
| | | | | | It's not used anywhere internally. Salvage its documentation for ffio_read_pause.
* avio: deprecate url_get_filename().Anton Khirnov2011-04-04
| | | | URLContext.filename should be used directly.
* avio: deprecate url_max_packet_size().Anton Khirnov2011-04-04
| | | | URLContext.max_packet_size should be used directly.
* avio: make url_get_file_handle() internal.Anton Khirnov2011-04-04
|
* avio: make url_filesize() internal.Anton Khirnov2011-04-04
|
* avio: make url_close() internal.Anton Khirnov2011-04-04
|
* avio: make url_seek() internal.Anton Khirnov2011-04-04
|
* avio: cosmetics, move AVSEEK_SIZE/FORCE declarations togetherAnton Khirnov2011-04-04
|
* avio: make url_write() internal.Anton Khirnov2011-04-04
|
* avio: make url_read_complete() internal.Anton Khirnov2011-04-04
|
* avio: make url_read() internal.Anton Khirnov2011-04-04
|
* avio: make url_open() internal.Anton Khirnov2011-04-04
|
* avio: make url_connect internal.Anton Khirnov2011-04-04
|
* avio: make url_alloc internal.Anton Khirnov2011-04-04
|
* avio: deprecate url_open_protocolAnton Khirnov2011-04-04
| | | | | The unbuffered API will be made private and it's not used anywhere internally.
* avio: deprecate url_poll and URLPollEntryAnton Khirnov2011-04-04
| | | | | They're unimplemented and nobody cared to do anything with that for 10 years.
* avio: make url_fdopen internal.Anton Khirnov2011-04-03
| | | | | The unbuffered URLContext API will be made private, so there's no point in this function being public.
* avio: make url_open_dyn_packet_buf internal.Anton Khirnov2011-04-03
| | | | | | | It doesn't look fit to be a part of the public API. Adding a temporary hack to ffserver to be able to use it, should be cleaned up when somebody is up for it.
* avio: avio_ prefix for url_close_dyn_bufAnton Khirnov2011-04-03
|
* avio: avio_ prefix for url_open_dyn_bufAnton Khirnov2011-04-03
|
* avio: introduce an AVIOContext.seekable fieldAnton Khirnov2011-04-03
| | | | Use it instead of url_is_streamed and AVIOContext.is_streamed.
* avio: document avio_alloc_context.Anton Khirnov2011-04-01
|
* avio: make get_checksum() internal.Anton Khirnov2011-03-30
|
* avio: move ff_crc04C11DB7_update() from avio.h -> avio_internal.hAnton Khirnov2011-03-30
|
* avio: make init_checksum() internal.Anton Khirnov2011-03-30
|
* avio: make udp_set_remote_url/get_local_port internal.Anton Khirnov2011-03-23
|
* avio: cosmetics - nicer vertical alignment.Anton Khirnov2011-03-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>