From 5dc4a72110fa023e60c58e02206c9749ffc87dec Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 20 Sep 2009 16:05:25 +0300 Subject: [PATCH] Remove never set, never used Pentium Pro capability --- include/vlc_common.h | 1 - src/libvlc.c | 1 - 2 files changed, 2 deletions(-) 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" ); -- 2.39.2