diff options
author | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-04 03:05:16 +0000 |
---|---|---|
committer | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-04 03:05:16 +0000 |
commit | 08301d00561bbd7e8ea130b3bd1bf0b4cc91697f (patch) | |
tree | f5d6e7def9993301184273f4ffa637b24530944b /mp3lib/dct64_3dnow.c | |
parent | d36bb9b2016367a7861c1b6b2d4235e74c6a76ea (diff) | |
download | mpv-08301d00561bbd7e8ea130b3bd1bf0b4cc91697f.tar.bz2 mpv-08301d00561bbd7e8ea130b3bd1bf0b4cc91697f.tar.xz |
Correct dct64 functions' declarations
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23459 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/dct64_3dnow.c')
-rw-r--r-- | mp3lib/dct64_3dnow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp3lib/dct64_3dnow.c b/mp3lib/dct64_3dnow.c index 841fa98b00..3ccd03cf88 100644 --- a/mp3lib/dct64_3dnow.c +++ b/mp3lib/dct64_3dnow.c @@ -15,7 +15,7 @@ static unsigned long long int attribute_used __attribute__((aligned(8))) x_plus_minus_3dnow = 0x8000000000000000ULL; static float attribute_used plus_1f = 1.0; -void dct64_MMX_3dnow(real *a,real *b,real *c) +void dct64_MMX_3dnow(short *a,short *b,real *c) { char tmp[256]; __asm __volatile( |