aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/vp6dsp_init.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/x86/vp6dsp: Remove obsolete MMX ff_vp6_filter_diag4_mmxAndreas Rheinhardt2022-06-221-7/+0
| | | | | | | | | The only systems which benefit from it are truely ancient 32bit x86s as all other systems use at least the SSE2 versions (this includes all x64 cpus (which is why this code is restricted to x86-32)). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Merge commit '721d57e608dc4fd6c86f27c5ae76ef559d646220'James Almer2017-03-191-1/+1
|\ | | | | | | | | | | | | * commit '721d57e608dc4fd6c86f27c5ae76ef559d646220': vp56: Separate VP5 and VP6 dsp initialization Merged-by: James Almer <jamrial@gmail.com>
| * vp56: Separate VP5 and VP6 dsp initializationDiego Biurrun2016-08-261-1/+1
| | | | | | | | | | VP5 has no arch-specific optimizations (nor will it get some in the future), so it makes no sense to try to share dsp init code with VP6.
* | Merge commit 'd9d26a3674f31f482f54e936fcb382160830877a'James Almer2017-03-191-2/+2
|\| | | | | | | | | | | | | * commit 'd9d26a3674f31f482f54e936fcb382160830877a': vp56: Change type of stride parameters to ptrdiff_t Merged-by: James Almer <jamrial@gmail.com>
| * vp56: Change type of stride parameters to ptrdiff_tDiego Biurrun2016-08-261-2/+2
| | | | | | | | | | This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic.
* | Merge commit 'dc40a70c5755bccfb1a1349639943e1f408bea50'Hendrik Leppkes2016-06-261-1/+0
|\| | | | | | | | | | | | | * commit 'dc40a70c5755bccfb1a1349639943e1f408bea50': Drop unnecessary libavutil/x86/asm.h #includes Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * Drop unnecessary libavutil/x86/asm.h #includesDiego Biurrun2016-05-281-1/+0
| |
* | Merge commit 'b0be1ae792ac8bbfb0fc7b9b9cb39eaf0feb489b'Michael Niedermayer2014-01-091-0/+1
|\| | | | | | | | | | | | | * commit 'b0be1ae792ac8bbfb0fc7b9b9cb39eaf0feb489b': x86: avcodec: Add a bunch of missing #includes for av_cold Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: avcodec: Add a bunch of missing #includes for av_coldDiego Biurrun2014-01-091-0/+1
| |
* | Merge commit '8506ff97c9ea4a1f52983497ecf8d4ef193403a9'Michael Niedermayer2013-08-241-4/+4
|/ | | | | | | * commit '8506ff97c9ea4a1f52983497ecf8d4ef193403a9': vp56: Mark VP6-only optimizations as such. Merged-by: Michael Niedermayer <michaelni@gmx.at>
* vp56: Mark VP6-only optimizations as such.Diego Biurrun2013-08-231-0/+45
Most of our VP56 optimizations are VP6-only and will stay that way. So avoid compiling them for VP5-only builds.