1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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

Originally committed as revision 12141 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Guillaume Poirier 2008-02-19 07:19:15 +00:00
parent 42a362e57b
commit 9d8109ad0f

View 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)
{