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-31lavf: add functions for accessing the fourcc<->CodecID mapping tables.Anton Khirnov
Fixes bug 212.
2012-01-31lavf: rename AVInputFormat.value to raw_codec_id.Anton Khirnov
It's only used by raw demuxers for storing the codec id.
2012-01-31lavf: reorder AVInput/OutputFormat fields.Anton Khirnov
Put all private fields at the end and mark them as such so they can be easily changed/removed. This breaks ABI.
2012-01-27lavf: remove disabled FF_API_SET_PTS_INFO cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_REORDER_PRIVATE cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_SEEK_PUBLIC cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_STREAM_COPY cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_PRELOAD cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_NEW_STREAM cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_MUXRATE cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_FILESIZE cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_TIMESTAMP cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_LOOP_OUTPUT cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_LOOP_INPUT cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_AVSTREAM_QUALITY cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_FLAG_RTP_HINT cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_SDP_CREATE cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_GUESS_IMG2_CODEC cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_PKT_DUMP cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_FIND_INFO_TAG cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_PARSE_DATE cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_DUMP_FORMAT cruftAnton Khirnov
2012-01-27lavf: remove disabled FF_API_FORMAT_PARAMETERS cruftAnton Khirnov
Also remove now unused AVFormatParameters struct and AVOutputFormat.set_parameters().
2012-01-27lavf: remove disabled FF_API_OLD_METADATA2 cruftAnton Khirnov
2012-01-27lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov
2012-01-25libavformat: Add a flag for muxers that support write_packet(NULL) for flushingMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-18lavf: fix and extend av_interleaved_write_frame() doxy.Anton Khirnov
Specify that lavf is responsible for freeing the data.
2012-01-12lavf: undeprecate read_seek().Anton Khirnov
The "new seeking API" was never finished and nobody is working on it.
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
2011-12-12lavf: add avformat_close_input().Anton Khirnov
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().
2011-12-12lavf: deprecate av_close_input_stream().Anton Khirnov
And remove all its uses.
2011-12-12lavf doxy: add some basic demuxing documentation.Anton Khirnov
2011-12-12lavf doxy: add some general lavf information.Anton Khirnov
2011-12-12lavf doxy: add misc utility functions to a group.Anton Khirnov
2011-12-12lavf doxy: add av_guess_codec/format to the encoding group.Anton Khirnov
2011-12-12lavf doxy: add core functions to a doxy group.Anton Khirnov
2011-12-11Fix a bunch of common typos.Diego Biurrun
2011-12-11lavf doxy: add muxing stuff to lavf_encoding groupAnton Khirnov
2011-12-11lavf doxy: add demuxing stuff to lavf_decoding groupAnton Khirnov
2011-12-11lavf doxy: expand/reword metadata API doxy.Anton Khirnov
2011-12-11lavf doxy: add installed headers to groups.Anton Khirnov
2011-12-11lavf doxy: rename lavf I/O group to lavf_io.Anton Khirnov
2011-12-11lavf doxy: add metadata docs to the main lavf groupAnton Khirnov
2011-12-05doxygen: eliminate Qt-style doxygen syntaxDiego Biurrun
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-11-22doxy: structure libavformat groupsLuca Barbato
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-11-08lavf: expand doxy for some AVFormatContext fields.Anton Khirnov
2011-11-07avformat: Revise wordingMartin Storsjö
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>
2011-11-05avformat: Add functions for doing global network initializationMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>