From: RĂ©mi Denis-Courmont Date: Sun, 20 Sep 2009 13:05:25 +0000 (+0300) Subject: Remove never set, never used Pentium Pro capability X-Git-Tag: 1.1.0-ff~3302 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5dc4a72110fa023e60c58e02206c9749ffc87dec;p=vlc Remove never set, never used Pentium Pro capability --- diff --git a/include/vlc_common.h b/include/vlc_common.h index f5829fe55d..6d9ba10f0c 100644 --- a/include/vlc_common.h +++ b/include/vlc_common.h @@ -791,7 +791,6 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir )); #define CPU_CAPABILITY_NONE 0 #define CPU_CAPABILITY_486 (1<<0) #define CPU_CAPABILITY_586 (1<<1) -#define CPU_CAPABILITY_PPRO (1<<2) #define CPU_CAPABILITY_MMX (1<<3) #define CPU_CAPABILITY_3DNOW (1<<4) #define CPU_CAPABILITY_MMXEXT (1<<5) diff --git a/src/libvlc.c b/src/libvlc.c index efebc02bde..3eb5abdc00 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -768,7 +768,6 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, p_capabilities[0] = '\0'; PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" ); PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" ); - PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" ); PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" ); PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" ); PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );