mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
dsputil: Replace a LONG_MAX check with HAVE_FAST_64BIT.
This commit is contained in:
parent
e7a972e113
commit
d9a9f50a36
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user