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
2014-05-30Merge commit '368f50359eb328b0b9d67451f56fda20b3255f9a'Michael Niedermayer
* commit '368f50359eb328b0b9d67451f56fda20b3255f9a': dsputil: Split off quarterpel bits into their own context Conflicts: configure libavcodec/dsputil.c libavcodec/h263dec.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/vc1dec.c libavcodec/vc1dsp.c libavcodec/x86/dsputil_init.c libavcodec/x86/qpeldsp.asm Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-29dsputil: Split off quarterpel bits into their own contextDiego Biurrun
2014-01-15Merge commit '71617884a2a673908bd5c0f73d4f91fdca3da82a'Michael Niedermayer
* commit '71617884a2a673908bd5c0f73d4f91fdca3da82a': aarch64: h264 chroma motion compensation NEON optimizations Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-01-15aarch64: h264 chroma motion compensation NEON optimizationsJanne Grunau
Since RV40 and VC-1 use almost the same algorithm so optimizations for those two decoders are easy to do and included.
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2013-02-06rv34: Drop now unnecessary dsputil dependenciesDiego Biurrun
2013-02-06dsputil: Separate h264chromaDiego Biurrun
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-10-10arm: call arm-specific rv34dsp init functions under if (ARCH_ARM)Jean-Baptiste Kempf
Assign NEON specific function pointers after runtime check via av_get_cpu_flags(). Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2012-04-10rv40dsp: implement prescaled versions for biweight.Christophe GISQUET
Quite often, the original weights are multiple of 512. By prescaling them by 1/512 when they are computed (once per frame), no intermediate shifting is needed, and no prescaling on each call either. The x86 code already used that trick. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-02-21rv34: change most "int stride" into "ptrdiff_t stride".Ronald S. Bultje
This prevents having to sign-extend on 64-bit systems with 32-bit ints, such as x86-64. Also fixes crashes on systems where we don't do it and arguments are not in registers, such as Win64 for all weight functions.
2012-01-16rv34: 1-pass inter MB reconstructionChristophe GISQUET
Implement 1-pass inverse transform and reconstruction for inter blocks.
2012-01-16rv34: Intra 16x16 handlingChristophe GISQUET
Extract processing of intra 16x16 blocks from intra macroblock processing. Also implement a function performing inverse transform and block reconstruction for DC-only blocks in 1 pass instead of 2.
2012-01-12rv34: DC-only inverse transformChristophe GISQUET
When decoding coefficients, detect whether the block is DC-only, and take advantage of this knowledge to perform DC-only inverse transform. This is achieved by: - first, changing the 108x4 element modulo_three_table into a 108 element table (kind of base4), and accessing each value using mask and shifts. - then, checking low bits for 0 (as they represent the presence of higher frequency coefficients) Also provide x86 SIMD code for the DC-only inverse transform. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2012-01-04rv34: joint coefficient decoding and dequantizationChristophe GISQUET
Perform dequantization while decoding coefficients instead of performing it on the entire coefficients buffer. Since quantized coefficients are very sparse, this usually causes a small speedup. Speedup of around 1% on Panda board compared to the removed here neon code. Global speedup is probably around 3%. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2011-12-14rv40: rearrange loop filter functionsMans Rullgard
This splits the loop filter functions into smaller, more SIMD-friendly functions. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-13rv34: move 4x4 dequant to RV34DSPContextMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-06rv40: NEON optimised chroma MCJanne Grunau
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-06rv34: NEON optimised inverse transform functionsJanne Grunau
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-01rv40: move loop filter to rv34dsp contextJanne Grunau
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-10-12rv34: move inverse transform functions to DSP contextJanne Grunau
2011-08-12Add weighted motion compensation for RV40 B-framesKostya Shishkov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-08-12Move RV3/4-specific DSP functions into their own contextKostya Shishkov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>