From c367d0c65336b4238eb7188921996fd1387261d4 Mon Sep 17 00:00:00 2001 From: Guillaume Poirier Date: Tue, 19 Feb 2008 07:24:00 +0000 Subject: arg 10000l. Fix wrong fix committed in r12141 Originally committed as revision 12143 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/mpegvideo_altivec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/ppc/mpegvideo_altivec.c') diff --git a/libavcodec/ppc/mpegvideo_altivec.c b/libavcodec/ppc/mpegvideo_altivec.c index 3dc6db273b..a2ba5e1251 100644 --- a/libavcodec/ppc/mpegvideo_altivec.c +++ b/libavcodec/ppc/mpegvideo_altivec.c @@ -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) { -- cgit v1.2.3