Commit 5712ce24 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove unused 486 and 586 capabilities

parent 5dc4a721
...@@ -789,8 +789,6 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir )); ...@@ -789,8 +789,6 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir ));
* CPU capabilities * CPU capabilities
*****************************************************************************/ *****************************************************************************/
#define CPU_CAPABILITY_NONE 0 #define CPU_CAPABILITY_NONE 0
#define CPU_CAPABILITY_486 (1<<0)
#define CPU_CAPABILITY_586 (1<<1)
#define CPU_CAPABILITY_MMX (1<<3) #define CPU_CAPABILITY_MMX (1<<3)
#define CPU_CAPABILITY_3DNOW (1<<4) #define CPU_CAPABILITY_3DNOW (1<<4)
#define CPU_CAPABILITY_MMXEXT (1<<5) #define CPU_CAPABILITY_MMXEXT (1<<5)
......
...@@ -766,8 +766,6 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -766,8 +766,6 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
} }
p_capabilities[0] = '\0'; p_capabilities[0] = '\0';
PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" ); PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" ); PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" ); PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
......
...@@ -138,8 +138,6 @@ uint32_t CPUCapabilities( void ) ...@@ -138,8 +138,6 @@ uint32_t CPUCapabilities( void )
goto out; goto out;
# endif # endif
i_capabilities |= CPU_CAPABILITY_486;
/* the CPU supports the CPUID instruction - get its level */ /* the CPU supports the CPUID instruction - get its level */
cpuid( 0x00000000 ); cpuid( 0x00000000 );
...@@ -150,9 +148,6 @@ uint32_t CPUCapabilities( void ) ...@@ -150,9 +148,6 @@ uint32_t CPUCapabilities( void )
goto out; goto out;
#endif #endif
/* FIXME: this isn't correct, since some 486s have cpuid */
i_capabilities |= CPU_CAPABILITY_586;
/* borrowed from mpeg2dec */ /* borrowed from mpeg2dec */
b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 ) b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
&& ( i_edx == 0x69746e65 ); && ( i_edx == 0x69746e65 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment