OSDN Git Service

Use HAVE_ALTIVEC preprocessor conditionals like in the rest of FFmpeg.
authorDiego Biurrun <diego@biurrun.de>
Sat, 9 Feb 2008 17:55:07 +0000 (17:55 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sat, 9 Feb 2008 17:55:07 +0000 (17:55 +0000)
Originally committed as revision 11886 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/libxvidff.c

index d29177b..414471e 100644 (file)
@@ -38,7 +38,7 @@
 #define BUFFER_CAT(x)               (&((x)[strlen(x)]))
 
 /* For PPC Use */
-#if HAVE_ALTIVEC==1
+#ifdef HAVE_ALTIVEC
 extern int has_altivec(void);
 #endif
 
@@ -169,7 +169,7 @@ int ff_xvid_encode_init(AVCodecContext *avctx)  {
 
 #ifdef ARCH_POWERPC
     /* XviD's PPC support is borked, use libavcodec to detect */
-#if HAVE_ALTIVEC==1
+#ifdef HAVE_ALTIVEC
     if( has_altivec() ) {
         xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_ALTIVEC;
     } else