summaryrefslogtreecommitdiff
path: root/libavformat/xmv.c
Commit message (Collapse)AuthorAge
* miscellaneous typo fixesDiego Biurrun2012-12-21
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov2012-01-27
|
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-30
| | | | It's supposed to be called only from (de)muxers.
* lavf: replace av_new_stream->avformat_new_stream part II.Anton Khirnov2011-10-19
| | | | | | | | Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed.
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-19
| | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
* xmv: eliminate superfluous zeroing of zero dataSven Hesse2011-08-26
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* add XMV demuxerSven Hesse2011-08-17
Signed-off-by: Diego Biurrun <diego@biurrun.de>