diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2008-02-19 07:24:00 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2008-02-19 07:24:00 +0000 |
commit | c367d0c65336b4238eb7188921996fd1387261d4 (patch) | |
tree | 31bedd84445e26090aefccc1ec4454a936978106 | |
parent | d6267d027b68f52abf7101c57a9fea12e7199e04 (diff) | |
download | ffmpeg-c367d0c65336b4238eb7188921996fd1387261d4.tar.gz |
arg 10000l. Fix wrong fix committed in r12141
Originally committed as revision 12143 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/mpegvideo_altivec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |