Mercurial > libavcodec.hg
diff x86/dsputil_mmx.c @ 11951:afee30fe8c26 libavcodec
16x16 and 8x8c x86 SIMD intra pred functions for VP8 and H.264
author | darkshikari |
---|---|
date | Fri, 25 Jun 2010 18:25:49 +0000 |
parents | 11c5a87497d3 |
children | d3551fcf4c1c |
line wrap: on
line diff
--- a/x86/dsputil_mmx.c Fri Jun 25 18:14:07 2010 +0000 +++ b/x86/dsputil_mmx.c Fri Jun 25 18:25:49 2010 +0000 @@ -62,7 +62,7 @@ DECLARE_ALIGNED(8, const uint64_t, ff_pw_255) = 0x00ff00ff00ff00ffULL; DECLARE_ALIGNED(8, const uint64_t, ff_pb_1 ) = 0x0101010101010101ULL; -DECLARE_ALIGNED(8, const uint64_t, ff_pb_3 ) = 0x0303030303030303ULL; +DECLARE_ALIGNED(16, const xmm_reg, ff_pb_3 ) = {0x0303030303030303ULL, 0x0303030303030303ULL}; DECLARE_ALIGNED(8, const uint64_t, ff_pb_7 ) = 0x0707070707070707ULL; DECLARE_ALIGNED(8, const uint64_t, ff_pb_1F ) = 0x1F1F1F1F1F1F1F1FULL; DECLARE_ALIGNED(8, const uint64_t, ff_pb_3F ) = 0x3F3F3F3F3F3F3F3FULL;