- 18 Mar, 2013 1 commit
-
-
Kostya Shishkov authored
Fixes CVE-2013-2495 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Luca Barbato <lu_zero@gentoo.org> CC: libav-stable@libav.org
-
- 15 Mar, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 05 Mar, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes out of array accesses Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Jan, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 11 Dec, 2012 1 commit
-
-
Peter Ross authored
-
- 04 Dec, 2012 1 commit
-
-
Peter Ross authored
Signed-off-by:
Peter Ross <pross@xvid.org>
-
- 30 Nov, 2012 2 commits
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
Paul B Mahol authored
Based on patch by Piotr Bandurski Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 28 Nov, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 26 Nov, 2012 1 commit
-
-
Peter Ross authored
Signed-off-by:
Peter Ross <pross@xvid.org> Reviewed-by:
Paul B Mahol <onemda@gmail.com>
-
- 19 Nov, 2012 1 commit
-
-
Peter Ross authored
Fixes ticket #1046. Signed-off-by:
Peter Ross <pross@xvid.org>
-
- 18 Nov, 2012 2 commits
-
-
Peter Ross authored
Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Peter Ross authored
Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Nov, 2012 1 commit
-
-
Justin Ruggles authored
-
- 01 Sep, 2012 1 commit
-
-
Piotr Bandurski authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 10 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 30 Jul, 2012 1 commit
-
-
Diego Biurrun authored
-
- 23 Jul, 2012 1 commit
-
-
Paul B Mahol authored
Also while here sort chunk ids. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 21 Jul, 2012 2 commits
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 19 May, 2012 1 commit
-
-
Mans Rullgard authored
This is consistent with other format names. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 12 Mar, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 09 Mar, 2012 1 commit
-
-
Piotr Bandurski authored
Fixes trac #1045. Thanks to Peter Ross for his help with this patch. Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 27 Jan, 2012 1 commit
-
-
Anton Khirnov authored
-
- 30 Nov, 2011 1 commit
-
-
Anton Khirnov authored
It's supposed to be called only from (de)muxers.
-
- 21 Nov, 2011 1 commit
-
-
ami_stuff authored
Some sample IFF ACBM files can be found here: http://aminet.net/package/dev/basic/ABdemos Thanks to Peter Ross for his help with this patch. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 09 Nov, 2011 1 commit
-
-
Justin Ruggles authored
It is found in some 8svx files (e.g. ones created by SoX). Currently the decoder reuses the 8svx functions because we already have handling of a single large planar packet for the compressed 8svx codecs.
-
- 19 Oct, 2011 1 commit
-
-
Anton Khirnov authored
Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
-
- 22 Sep, 2011 1 commit
-
-
Justin Ruggles authored
Make the iff demuxer send the whole audio chunk to the decoder as a single packet and move stereo interleaving from the iff demuxer to the decoder. Based on a patch by Stefano Sabatini. git.videolan.org/ffmpeg.git commit e280a4da
-
- 17 Jul, 2011 1 commit
-
-
Anton Khirnov authored
It's more readable and less prone to breakage.
-
- 08 Jun, 2011 1 commit
-
-
Anton Khirnov authored
-
- 02 Jun, 2011 1 commit
-
-
Clément Bœsch authored
-
- 28 May, 2011 1 commit
-
-
Stefano Sabatini authored
-
- 16 May, 2011 4 commits
-
-
Stefano Sabatini authored
Make the iff demuxer send the whole audio chunk to the decoder as a single packet, move stereo interleaving from the iff demuxer to the decoder, and introduce an 8svx_raw decoder which performs stereo interleaving. This is required for handling stereo data correctly, indeed samples are stored like: LLLLLL....RRRRRR that is all left samples are at the beginning of the chunk, all right samples at the end, so it is necessary to store and process the whole buffer in order to decode each frame. Thus the decoder needs all the audio chunk before it can return interleaved data. Fix decoding of files 8svx_exp.iff and 8svx_fib.iff, fix trac issue #169.
-
Stefano Sabatini authored
Ease readability.
-
Stefano Sabatini authored
-
Stefano Sabatini authored
Create separate fields 8svx_compression (for audio compression), and bitmap_compression (for video compression), and perform minor related logging tweaks. Improve clarity, also simplify the case when both types of compression are employed in the same file.
-
- 24 Apr, 2011 1 commit
-
-
Sebastian Vater authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-