comparison mp3lib/sr1.c @ 11240:5403367c7032

removed the stdcall convention
author alex
date Wed, 22 Oct 2003 20:58:46 +0000
parents a54dbea02a72
children c8b84bb55089
comparison
equal deleted inserted replaced
11239:a71000eeeb9c 11240:5403367c7032
381 /******************************************************************************/ 381 /******************************************************************************/
382 /* PUBLIC FUNCTIONS */ 382 /* PUBLIC FUNCTIONS */
383 /******************************************************************************/ 383 /******************************************************************************/
384 384
385 /* It's hidden from gcc in assembler */ 385 /* It's hidden from gcc in assembler */
386 extern void __attribute__((__stdcall__)) dct64_MMX(real *, real *, real *); 386 extern void dct64_MMX(real *, real *, real *);
387 extern void __attribute__((__stdcall__)) dct64_MMX_3dnow(real *, real *, real *); 387 extern void dct64_MMX_3dnow(real *, real *, real *);
388 extern void __attribute__((__stdcall__)) dct64_MMX_3dnowex(real *, real *, real *); 388 extern void dct64_MMX_3dnowex(real *, real *, real *);
389 extern void __attribute__((__stdcall__)) dct64_MMX_sse(real *, real *, real *); 389 extern void dct64_MMX_sse(real *, real *, real *);
390 void __attribute__((__stdcall__)) (*dct64_MMX_func)(real *, real *, real *); 390 void (*dct64_MMX_func)(real *, real *, real *);
391 391
392 #include "../cpudetect.h" 392 #include "../cpudetect.h"
393 393
394 // Init decoder tables. Call first, once! 394 // Init decoder tables. Call first, once!
395 #ifdef USE_FAKE_MONO 395 #ifdef USE_FAKE_MONO