Mercurial > mplayer.hg
comparison mp3lib/tabinit.c @ 1045:2ee9a18ed6f3
Minor improvements
author | nickols_k |
---|---|
date | Thu, 07 Jun 2001 09:08:32 +0000 |
parents | 3b5f5d1c5041 |
children | 03b7e2955a20 |
comparison
equal
deleted
inserted
replaced
1044:0ed3fa262ec6 | 1045:2ee9a18ed6f3 |
---|---|
1 | 1 |
2 | 2 |
3 #ifdef HAVE_3DNOW | 3 #ifdef HAVE_3DNOW |
4 real decwin[2*(512+32)]; | 4 real decwin[2*(512+32)] __attribute__((aligned(8))); |
5 real cos64[32],cos32[16],cos16[8],cos8[4],cos4[2]; | 5 real cos64[32] __attribute__((aligned(8))); |
6 real cos32[16] __attribute__((aligned(8))); | |
7 real cos16[8] __attribute__((aligned(8))); | |
8 real cos8[4] __attribute__((aligned(8))); | |
9 real cos4[2] __attribute__((aligned(8))); | |
6 real *pnts[]={ cos64,cos32,cos16,cos8,cos4 }; | 10 real *pnts[]={ cos64,cos32,cos16,cos8,cos4 }; |
7 #else | 11 #else |
8 real decwin[512+32]; | 12 real decwin[512+32]; |
9 real cos64[16],cos32[8],cos16[4],cos8[2],cos4[1]; | 13 real cos64[16],cos32[8],cos16[4],cos8[2],cos4[1]; |
10 real *pnts[] = { cos64,cos32,cos16,cos8,cos4 }; | 14 real *pnts[] = { cos64,cos32,cos16,cos8,cos4 }; |
11 #endif | 15 #endif |
12 | 16 |
13 long intwinbase[] = { | 17 long intwinbase[] = { |
14 0, -1, -1, -1, -1, -1, -1, -2, -2, -2, | 18 0, -1, -1, -1, -1, -1, -1, -2, -2, -2, |
15 -2, -3, -3, -4, -4, -5, -5, -6, -7, -7, | 19 -2, -3, -3, -4, -4, -5, -5, -6, -7, -7, |
16 -8, -9, -10, -11, -13, -14, -16, -17, -19, -21, | 20 -8, -9, -10, -11, -13, -14, -16, -17, -19, -21, |
17 -24, -26, -29, -31, -35, -38, -41, -45, -49, -53, | 21 -24, -26, -29, -31, -35, -38, -41, -45, -49, -53, |
18 -58, -63, -68, -73, -79, -85, -91, -97, -104, -111, | 22 -58, -63, -68, -73, -79, -85, -91, -97, -104, -111, |