Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 49457 | Differences between
and this patch

Collapse All | Expand All

(-)transcode-0.6.12.orig/ffmpeg/libavcodec/i386/dsputil_mmx.c (-2 / +2 lines)
Lines 31-38 Link Here
31
static const uint64_t mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL;
31
static const uint64_t mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL;
32
static const uint64_t mm_wtwo __attribute__ ((aligned(8))) = 0x0002000200020002ULL;
32
static const uint64_t mm_wtwo __attribute__ ((aligned(8))) = 0x0002000200020002ULL;
33
33
34
static const uint64_t ff_pw_20 __attribute__ ((aligned(8))) = 0x0014001400140014ULL;
34
static const uint64_t ff_pw_20 __attribute__ ((aligned(8), used)) = 0x0014001400140014ULL;
35
static const uint64_t ff_pw_3  __attribute__ ((aligned(8))) = 0x0003000300030003ULL;
35
static const uint64_t ff_pw_3  __attribute__ ((aligned(8), used)) = 0x0003000300030003ULL;
36
static const uint64_t ff_pw_16 __attribute__ ((aligned(8))) = 0x0010001000100010ULL;
36
static const uint64_t ff_pw_16 __attribute__ ((aligned(8))) = 0x0010001000100010ULL;
37
static const uint64_t ff_pw_15 __attribute__ ((aligned(8))) = 0x000F000F000F000FULL;
37
static const uint64_t ff_pw_15 __attribute__ ((aligned(8))) = 0x000F000F000F000FULL;
38
38
(-)transcode-0.6.12.orig/ffmpeg/libavcodec/i386/motion_est_mmx.c (-1 / +1 lines)
Lines 26-32 Link Here
26
0x0002000200020002ULL,
26
0x0002000200020002ULL,
27
};
27
};
28
28
29
static __attribute__ ((aligned(8), unused)) uint64_t bone= 0x0101010101010101LL;
29
static __attribute__ ((aligned(8), used)) uint64_t bone= 0x0101010101010101LL;
30
30
31
static inline void sad8_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
31
static inline void sad8_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
32
{
32
{
(-)transcode-0.6.12.orig/ffmpeg/libavcodec/i386/simple_idct_mmx.c (-2 / +2 lines)
Lines 45-52 Link Here
45
#define ROW_SHIFT 11
45
#define ROW_SHIFT 11
46
#define COL_SHIFT 20 // 6
46
#define COL_SHIFT 20 // 6
47
47
48
static const uint64_t __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000ULL;
48
static const uint64_t __attribute__((aligned(8), used)) wm1010= 0xFFFF0000FFFF0000ULL;
49
static const uint64_t __attribute__((aligned(8))) d40000= 0x0000000000040000ULL;
49
static const uint64_t __attribute__((aligned(8), used)) d40000= 0x0000000000040000ULL;
50
50
51
static const int16_t __attribute__((aligned(8))) coeffs[]= {
51
static const int16_t __attribute__((aligned(8))) coeffs[]= {
52
	1<<(ROW_SHIFT-1), 0, 1<<(ROW_SHIFT-1), 0,
52
	1<<(ROW_SHIFT-1), 0, 1<<(ROW_SHIFT-1), 0,

Return to bug 49457