x11-misc/xkeyboard-config-2.7 cz_prog
[anomen-overlay.git] / media-video / mplayer / files / mplayer-1.0_rc4_p20110322-gcc46.patch
blobbb7240eac0b19038953e34bce69c952bcdae3fd9
1 https://bugs.gentoo.org/377837
2 http://lists-archives.org/mplayer-dev-eng/34349-compiling-mplayer-with-gcc-4-6-broken-audio-decoding.html
4 --- a/mp3lib/dct64_sse.c
5 +++ b/mp3lib/dct64_sse.c
6 @@ -112,7 +112,6 @@ void dct64_sse(short *out0,short *out1,real *c)
10 - real *costab = costab_mmx + 24;
11 int i;
13 __asm__(
14 @@ -121,7 +120,7 @@ void dct64_sse(short *out0,short *out1,real *c)
15 "movaps %1, %%xmm5\n\t"
16 "movaps %%xmm5, %%xmm6\n\t"
18 - :"m"(*costab), "m"(*nnnn)
19 + :"m"(costab_mmx[24]), "m"(*nnnn)
22 for (i = 0; i < 0x20; i += 8)