aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/vp6dsp_init.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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.
* Drop unnecessary libavutil/x86/asm.h #includesDiego Biurrun2016-05-281-1/+0
|
* x86: avcodec: Add a bunch of missing #includes for av_coldDiego Biurrun2014-01-091-0/+1
|
* 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.