summaryrefslogtreecommitdiffstats
path: root/libavformat/xmv.c
Commit message (Collapse)AuthorAgeFilesLines
* lavf: more correct printf format specifiersDiego Biurrun2014-03-111-3/+3
|
* xmv: Add more sanity checks for parameters read from the bitstreamMartin Storsjö2013-09-171-2/+5
| | | | | | | | | | | Since the number of channels is multiplied by 36 and assigned to to a uint16_t, make sure this calculation didn't overflow. (In certain cases the calculation could overflow leaving the truncated block_align at 0, leading to divisions by zero later.) Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
* xmv: do not leak memory in the error paths in xmv_read_header()Anton Khirnov2013-04-041-4/+8
| | | | CC: libav-stable@libav.org
* xmv: check audio track parameters validity.Anton Khirnov2013-04-041-10/+22
| | | | | Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* avformat: av_log_ask_for_sample() ---> avpriv_request_sample()Diego Biurrun2013-03-131-1/+1
|
* miscellaneous typo fixesDiego Biurrun2012-12-211-1/+1
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-2/+2
|
* lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov2012-01-271-2/+1
|
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-301-2/+3
| | | | It's supposed to be called only from (de)muxers.
* lavf: replace av_new_stream->avformat_new_stream part II.Anton Khirnov2011-10-191-1/+1
| | | | | | | | 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-191-1/+1
| | | | | 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-261-11/+2
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* add XMV demuxerSven Hesse2011-08-171-0/+576
Signed-off-by: Diego Biurrun <diego@biurrun.de>
OpenPOWER on IntegriCloud