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-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-22tscc2: allocate AVFrame properly.Anton Khirnov
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
It's got_frame, not data size
2012-10-12tscc2: Fix an out of array accessMichael Niedermayer
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-27tscc2: fix typo in array indexKostya Shishkov
2012-07-18tscc2: do not add/subtract 128 bias during DCTKostya Shishkov
It turns out that the reference decoder subtracts 128 from DC during block decode but adds it back during reordering block with zigzag pattern. Transforming block with incorrect DC caused heavy visual artifacts for many quantisers.
2012-07-18tscc2: fix typo in DCTKostya Shishkov
2012-07-17tscc2: DCT output should not be clippedKostya Shishkov
This fixes decoding some TSCC2 files with large quantisers.
2012-07-11TechSmith Screen Codec 2 decoderKostya Shishkov