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
2015-06-18avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for qpel functionsShivraj Patil
This patch adds MSA (MIPS-SIMD-Arch) optimizations for qpel functions in new file qpeldsp_msa.c Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-25Merge commit '7fb993d338d88f2f62e0a358b6c9f3eb9a3a08ac'Michael Niedermayer
* commit '7fb993d338d88f2f62e0a358b6c9f3eb9a3a08ac': qpeldsp: Mark source pointer in qpel_mc_func function pointer const Conflicts: libavcodec/h264qpel_template.c libavcodec/x86/cavsdsp.c libavcodec/x86/rv40dsp_init.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-25qpeldsp: Mark source pointer in qpel_mc_func function pointer constDiego Biurrun
2014-06-13Merge commit 'f0ce9913d0974ac0c7371a62c3324dd2863b5d1b'Michael Niedermayer
* commit 'f0ce9913d0974ac0c7371a62c3324dd2863b5d1b': Rename tpel_template.c ---> pel_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-13Rename tpel_template.c ---> pel_template.cDiego Biurrun
The new name more accurately describes what the file is about.
2014-05-30avcodec/qpeldsp: Restore author attributionMichael Niedermayer
See: 368f50359eb328b0b9d67451f56fda20b3255f9a See: similarity index 51% copy from libavcodec/dsputil.c copy to libavcodec/qpeldsp.c index 6d41dfc..0beeab8 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/qpeldsp.c @@ -1,9 +1,5 @@ /* - * DSP utils - * Copyright (c) 2000, 2001 Fabrice Bellard - * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> - * - * gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at> + * quarterpel DSP functions * * This file is part of FFmpeg. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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