Mercurial > mplayer.hg
annotate mp3lib/d_cpu.h @ 434:50955d1a56c1
bih fix for mpegs
author | arpi_esp |
---|---|
date | Sun, 15 Apr 2001 14:46:07 +0000 |
parents | a1fe76547e8f |
children | 03b7e2955a20 |
rev | line source |
---|---|
1 | 1 |
2 // -------------------------------------------------------------------------- | |
3 // Cpu function detect by Pontscho/fresh!mindworkz | |
4 // -------------------------------------------------------------------------- | |
5 | |
6 #ifndef __MY_CPUIDENT | |
7 #define __MY_CPUIDENT | |
8 | |
9 unsigned int _CpuID; | |
10 unsigned int _i586; | |
11 unsigned int _3dnow; | |
12 | |
13 extern unsigned long CpuDetect( void ); | |
14 extern unsigned long ipentium( void ); | |
15 extern unsigned long a3dnow( void ); | |
16 | |
302 | 17 #endif |
18 |