Browse Source

Fix compilation failure with runtime cpudetect (Ticket #22)

tags/n0.8
Michael Niedermayer 15 years ago
parent
commit
95c8bb03ed
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libswscale/swscale.c

+ 3
- 3
libswscale/swscale.c View File

@@ -1209,9 +1209,9 @@ static inline void monoblack2Y(uint8_t *dst, const uint8_t *src, long width, uin
#if CONFIG_RUNTIME_CPUDETECT
# define COMPILE_C 1
# if ARCH_X86
# define COMPILE_MMX HAVE_MMX
# define COMPILE_MMX2 HAVE_MMX2
# define COMPILE_3DNOW HAVE_AMD3DNOW
# define COMPILE_MMX 1
# define COMPILE_MMX2 1
# define COMPILE_3DNOW 1
# elif ARCH_PPC
# define COMPILE_ALTIVEC HAVE_ALTIVEC
# endif


Loading…
Cancel
Save