summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
Commit message (Collapse)AuthorAge
* doxygen: misc consistency, spelling and wording fixesDiego Biurrun2011-12-12
|
* lavf: add avformat_close_input().Anton Khirnov2011-12-12
| | | | | | | It sets the supplied AVFormatContext pointer to NULL after freeing it, which is safer and its name is consistent with other lavf functions. Also deprecate av_close_input_file().
* lavf: deprecate av_close_input_stream().Anton Khirnov2011-12-12
| | | | And remove all its uses.
* lavf doxy: add some basic demuxing documentation.Anton Khirnov2011-12-12
|
* lavf doxy: add some general lavf information.Anton Khirnov2011-12-12
|
* lavf doxy: add misc utility functions to a group.Anton Khirnov2011-12-12
|
* lavf doxy: add av_guess_codec/format to the encoding group.Anton Khirnov2011-12-12
|
* lavf doxy: add core functions to a doxy group.Anton Khirnov2011-12-12
|
* Fix a bunch of common typos.Diego Biurrun2011-12-11
|
* lavf doxy: add muxing stuff to lavf_encoding groupAnton Khirnov2011-12-10
|
* lavf doxy: add demuxing stuff to lavf_decoding groupAnton Khirnov2011-12-10
|
* lavf doxy: expand/reword metadata API doxy.Anton Khirnov2011-12-10
|
* lavf doxy: add installed headers to groups.Anton Khirnov2011-12-10
|
* lavf doxy: rename lavf I/O group to lavf_io.Anton Khirnov2011-12-10
|
* lavf doxy: add metadata docs to the main lavf groupAnton Khirnov2011-12-10
|
* doxygen: eliminate Qt-style doxygen syntaxDiego Biurrun2011-12-05
|
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-30
| | | | It's supposed to be called only from (de)muxers.
* doxy: structure libavformat groupsLuca Barbato2011-11-22
|
* avio: Add AVIOInterruptCBMartin Storsjö2011-11-13
| | | | | | | | | | | | | 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>
* lavf: expand doxy for some AVFormatContext fields.Anton Khirnov2011-11-08
|
* avformat: Revise wordingMartin Storsjö2011-11-07
| | | | | | | | It might make sense not to make the function completely mandatory immediately at the next bump, which might be quite soon after the function was introduced. Signed-off-by: Martin Storsjö <martin@martin.st>
* avformat: Add functions for doing global network initializationMartin Storsjö2011-11-05
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavf: use number of output pictures for delay checks.Ronald S. Bultje2011-10-28
| | | | | | This fixes false positives of has_codec_delay_been_guessed() for streams where not every input picture generates an output picture, such as interlaced H264.
* lavf: move private fields in AVStream to the end at next bump.Anton Khirnov2011-10-28
|
* lavf: move private fields in AVFormatContext to the end at next bump.Anton Khirnov2011-10-28
|
* lavf: make some seeking functions privateAnton Khirnov2011-10-28
| | | | | | | Specifically av_update_cur_dts(), av_seek_frame_binary() and av_gen_search(). They are not supposed to be called outside lavf.
* lavf: deprecate AVStream.stream_copyAnton Khirnov2011-10-25
| | | | | It's only used in avconv, so it properly belongs to OutputStream struct there.
* mpegenc: add preload private option.Anton Khirnov2011-10-25
| | | | Deprecate AVFormatContext.preload.
* lavf: add avformat_new_stream as a replacement for av_new_stream.Anton Khirnov2011-10-19
| | | | It takes a codec parameter, thus enabling codec-specific defaults.
* mpegenc/mpegtsenc: add muxrate private options.Anton Khirnov2011-10-17
| | | | Deprecate AVFormatContext.mux_rate.
* lavf: deprecate AVFormatContext.file_sizeAnton Khirnov2011-10-17
| | | | It's too unreliable to be useful. avio_size() should be called instead.
* avformat: add AVInputFormat flag AVFMT_NO_BYTE_SEEK.Justin Ruggles2011-10-13
| | | | This will prevent seeking by bytes for formats that cannot handle this.
* avformat: update AVInputFormat allowed flagsJustin Ruggles2011-10-13
|
* lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.Anton Khirnov2011-09-03
|
* lavf: add avformat_query_codec().Anton Khirnov2011-08-16
| | | | It allows to check if a given codec can be written into a container.
* lavf: add support for error_recognition, use it in avidec, and bump minor ↵Dustin Brody2011-08-12
| | | | | | API version Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf: Add an option to discard corrupted framesZohar Kelrich2011-08-02
| | | | | Signed-off-by: Zohar Kelrich <lumimies@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavf: add forgotten attribute_deprecated to av_find_stream_info()Anton Khirnov2011-07-28
|
* lavf: deprecate AVFormatContext.timestampAnton Khirnov2011-07-12
| | | | It's replaced by 'creation_time' metadata tag.
* lavf: add avformat_find_stream_info()Anton Khirnov2011-07-10
| | | | It supports passing options to codecs.
* gif: add loop private option.Anton Khirnov2011-07-08
| | | | Deprecate AVFormatContext.loop_output.
* img2: add loop private option.Anton Khirnov2011-07-08
| | | | Deprecate AVFormatContext.loop_input.
* lavf: deprecate AVStream.quality.Anton Khirnov2011-07-06
| | | | AVStream is no place for it and it's unused outside of ffmpeg anyway.
* Do not include log.h in avutil.hMans Rullgard2011-07-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* libavformat: Add an example how to use the metadata APIReinhard Tartler2011-07-02
| | | | Also include it into the doxygen documentation
* avformat: doxify the Metadata APIReinhard Tartler2011-07-02
| | | | | convert the comment that documents the metadata API to use the doxygen markup
* lavf: add avformat_write_header() as a replacement for av_write_header().Anton Khirnov2011-06-16
| | | | It supports more convenient setting of AVOptions.
* Deprecate av_open_input_* and remove their uses.Anton Khirnov2011-06-16
| | | | Deprecate the last remaining member of AVFormatParameters.
* lavf: add avformat_open_input() as a replacement for av_open_input_*Anton Khirnov2011-06-16
| | | | Add support for demuxer private options.
* Remove all uses of now deprecated metadata functions.Anton Khirnov2011-06-08
|