Commit d9a9f50a authored by Alex Converse's avatar Alex Converse

dsputil: Replace a LONG_MAX check with HAVE_FAST_64BIT.

parent e7a972e1
......@@ -185,7 +185,7 @@ static int pix_norm1_c(uint8_t * pix, int line_size)
s += sq[pix[6]];
s += sq[pix[7]];
#else
#if LONG_MAX > 2147483647
#if HAVE_FAST_64BIT
register uint64_t x=*(uint64_t*)pix;
s += sq[x&0xff];
s += sq[(x>>8)&0xff];
......
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