diff options
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r-- | libavutil/crc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/crc.c b/libavutil/crc.c index 54133e70e1..4cad981632 100644 --- a/libavutil/crc.c +++ b/libavutil/crc.c @@ -121,7 +121,7 @@ uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t le crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8); while(buffer<end-3){ - crc ^= le2me_32(*(const uint32_t*)buffer); buffer+=4; + crc ^= le2ne_32(*(const uint32_t*)buffer); buffer+=4; crc = ctx[3*256 + ( crc &0xFF)] ^ctx[2*256 + ((crc>>8 )&0xFF)] ^ctx[1*256 + ((crc>>16)&0xFF)] |