diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-02 09:11:55 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-03 14:42:39 -0400 |
commit | 061b67fb50e2d5aab790d193ef93342e0312ddb2 (patch) | |
tree | 3af19f554bf25083abf4d1eadc2b970b7f9af91b /libavcodec/x86/constants.c | |
parent | 26ece7a511f8905a5ddfc19c7cd4ecdca7056138 (diff) | |
download | ffmpeg-061b67fb50e2d5aab790d193ef93342e0312ddb2.tar.gz |
vp9: 10/12bpp SIMD (sse2/ssse3/avx) for directional intra prediction.
Diffstat (limited to 'libavcodec/x86/constants.c')
-rw-r--r-- | libavcodec/x86/constants.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/constants.c b/libavcodec/x86/constants.c index 19345f56e4..3f3ee0ffc1 100644 --- a/libavcodec/x86/constants.c +++ b/libavcodec/x86/constants.c @@ -85,3 +85,5 @@ DECLARE_ALIGNED(32, const ymm_reg, ff_pd_16) = { 0x0000001000000010ULL, 0x000 0x0000001000000010ULL, 0x0000001000000010ULL }; DECLARE_ALIGNED(32, const ymm_reg, ff_pd_32) = { 0x0000002000000020ULL, 0x0000002000000020ULL, 0x0000002000000020ULL, 0x0000002000000020ULL }; +DECLARE_ALIGNED(32, const ymm_reg, ff_pd_65535)= { 0x0000ffff0000ffffULL, 0x0000ffff0000ffffULL, + 0x0000ffff0000ffffULL, 0x0000ffff0000ffffULL }; |