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
2017-03-29Merge commit 'baab87c4f30e75ea309294b06adcd01ce678bdc5'Clément Bœsch
* commit 'baab87c4f30e75ea309294b06adcd01ce678bdc5': bink: Have function pointer prototype match implementation Merged-by: Clément Bœsch <u@pkh.me>
2016-11-02bink: Have function pointer prototype match implementationDiego Biurrun
libavcodec/binkdsp.c(156) : warning C4028: formal parameter 1 different from declaration
2014-05-30Merge commit 'cb52a17cb62297802b0a77e5af9850d87c3f925b'Michael Niedermayer
* commit 'cb52a17cb62297802b0a77e5af9850d87c3f925b': dsputil: Move Bink-specific add_pixels8 to binkdsp Conflicts: libavcodec/dsputil.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-29dsputil: Move Bink-specific add_pixels8 to binkdspDiego Biurrun
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2013-06-01use my full first name instead of short one in copyrightsKostya Shishkov
2013-02-26Remove unnecessary dsputil.h #includesDiego Biurrun
2011-07-27dsputil: move a bink-only function to binkdspMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-27bink: make IDCT take 32-bit inputKostya Shishkov
Since IDCT transforming 32-bit input to 8-bit output is unusual and unpractical for most codecs, move Bink IDCT into separate context. Get rid of an additional permutation table while at it since SIMD support for Bink IDCT is unlikely to be implemented in foreseeable future. Quantisation tables also have to change type to signed for proper dequantisation of DCT coefficients. Signed-off-by: Mans Rullgard <mans@mansr.com>