Commit 5dc4a721 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove never set, never used Pentium Pro capability

parent 9aca3d77
...@@ -791,7 +791,6 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir )); ...@@ -791,7 +791,6 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir ));
#define CPU_CAPABILITY_NONE 0 #define CPU_CAPABILITY_NONE 0
#define CPU_CAPABILITY_486 (1<<0) #define CPU_CAPABILITY_486 (1<<0)
#define CPU_CAPABILITY_586 (1<<1) #define CPU_CAPABILITY_586 (1<<1)
#define CPU_CAPABILITY_PPRO (1<<2)
#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)
......
...@@ -768,7 +768,6 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -768,7 +768,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_486, "486" );
PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" ); PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
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" );
......
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