summaryrefslogtreecommitdiffstats
path: root/testing/mplayer2/mplayer-gcc-4.6-audio-fix.patch
blob: 148856c23313227ed4928f3076a69db82529e997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Fix broken audio decoding when compiling with gcc-4.6
http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2011-May/068495.html

--- ./mp3lib/dct64_sse.c.orig
+++ ./mp3lib/dct64_sse.c
@@ -113,7 +113,6 @@
     }
 
     {
-        real *costab = costab_mmx + 24;
         int i;
 
         __asm__(
@@ -122,7 +121,7 @@
             "movaps    %1, %%xmm5\n\t"
             "movaps    %%xmm5, %%xmm6\n\t"
             :
-            :"m"(*costab), "m"(*nnnn)
+            :"m"(costab_mmx[24]), "m"(*nnnn)
            );
 
         for (i = 0; i < 0x20; i += 8)