Commit a33952d1 authored by gpoirier's avatar gpoirier

10l: fix always false test: Binary & has lower precedence than ==


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12141 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f1197cbe
...@@ -603,7 +603,7 @@ extern void idct_add_altivec(uint8_t *dest, int line_size, int16_t *block); ...@@ -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) 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) if (s->avctx->lowres==0)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment