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
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-02-21adx parser: set durationJustin Ruggles
2012-01-04adx_parser: rewrite.Michael Niedermayer
The previous code ended in multiple different infinite loops. See stl_ten_1_big.sfd as example with and without zzuf Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-11-27adx: rename ff_adx_decode_header() to avpriv_adx_decode_header()Justin Ruggles
It is used by the ADX decoder, and therefore needs to be exported in order to work with shared libs.
2011-11-27adx: add an ADX parser.Justin Ruggles
This simplifies the decoder so it doesn't have to process an in-packet header or handle arbitrary-sized packets. It also fixes decoding of files with large headers.