summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authorzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-19 08:09:16 +0000
committerzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-19 08:09:16 +0000
commit38388e55953529453fe026d781c38dd2201607e4 (patch)
treea49393ff94b2d44df9a3a748acfdc53ef067828e /mp3lib
parentc5bc1d693c91335fb86f04c5d13eed5ce61abcb4 (diff)
downloadmpv-38388e55953529453fe026d781c38dd2201607e4.tar.bz2
mpv-38388e55953529453fe026d781c38dd2201607e4.tar.xz
Fix bug in reference code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23341 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/dct64_sse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mp3lib/dct64_sse.c b/mp3lib/dct64_sse.c
index 609d2e6664..a4f5eab6f4 100644
--- a/mp3lib/dct64_sse.c
+++ b/mp3lib/dct64_sse.c
@@ -274,7 +274,7 @@ void dct64_sse(real *a,real *b,real *c)
out0[32] = (short)(b1[14] + b1[9]);
out1[32] = (short)(b1[9] + b1[13]);
out1[96] = (short)(b1[13] + b1[11]);
- out1[222] = (short)b1[15];
+ out1[224] = (short)b1[15];
out1[160] = (short)(b1[15] + b1[11]);
out0[240] = (short)(b1[24] + b1[28] + b1[16]);
out0[208] = (short)(b1[24] + b1[28] + b1[20]);