OSDN Git Service

arg 10000l. Fix wrong fix committed in r12141
authorGuillaume Poirier <gpoirier@mplayerhq.hu>
Tue, 19 Feb 2008 07:24:00 +0000 (07:24 +0000)
committerGuillaume Poirier <gpoirier@mplayerhq.hu>
Tue, 19 Feb 2008 07:24:00 +0000 (07:24 +0000)
Originally committed as revision 12143 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ppc/mpegvideo_altivec.c

index 3dc6db2..a2ba5e1 100644 (file)
@@ -603,7 +603,7 @@ extern void idct_add_altivec(uint8_t *dest, int line_size, int16_t *block);
 
 void MPV_common_init_altivec(MpegEncContext *s)
 {
-    if (mm_flags & (MM_ALTIVEC == 0)) return;
+    if ((mm_flags & MM_ALTIVEC) == 0) return;
 
     if (s->avctx->lowres==0)
     {