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
2016-06-21Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb'Clément Bœsch
* commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb': cosmetics: Fix spelling mistakes Merged-by: Clément Bœsch <u@pkh.me>
2015-09-10vp9: fix overflow in 8x8 topleft 32x32 idct ssse3 version.Ronald S. Bultje
Also disable the mmx/iwht optimization when the bitexact flag is set. With synthetically coded coefficients (i.e. these that lead to a residual well outside the [-255,255] range), our optimizations will overflow. It doesn't make sense to fix the overflows, since they can only occur on synthetic input, not on real fwht-generated input. Thus, add a bitexact flag that disables this optimization.
2015-07-16avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for VP9 MC functionsShivraj Patil
This patch adds MSA (MIPS-SIMD-Arch) optimizations for VP9 MC functions in new file vp9_mc_msa.c Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-05-06vp9: add keyframe profile 2/3 support.Ronald S. Bultje
2015-04-23vp9: add support for resolution changes in inter frames.Ronald S. Bultje
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-29avcodec/vp9dsp: fix typo in mc doxy.Clément Bœsch
2013-10-09Fix make checkheaders for vp9 header files.Carl Eugen Hoyos
2013-10-03VP9 MC (ssse3) optimizations.Ronald S. Bultje
Decoding time of ped1080p.webm goes from 20.7sec to 11.3sec.
2013-10-03Native VP9 decoder.Ronald S. Bultje
Authors: Ronald S. Bultje <rsbultje gmail com>, Clement Boesch <u pkh me>