From 7b07d3e8feab3e8d6e25303f3e469e250027bb61 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 19 Aug 2007 12:36:15 +0000 Subject: Use defines instead of raw hex numbers to specify CRC polynomials Originally committed as revision 10143 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/crc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavutil/crc.c') diff --git a/libavutil/crc.c b/libavutil/crc.c index 02fb860b86..b519ac43de 100644 --- a/libavutil/crc.c +++ b/libavutil/crc.c @@ -94,10 +94,10 @@ uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t le main(){ uint8_t buf[1999]; int i; - int p[4][4]={{1, 32, 0xedb88320L, 0x3D5CDD04}, - {0, 32, 0x04c11db7L, 0xC0F5BAE0}, - {0, 16, 0x8005 , 0x1FBB }, - {0, 8, 0x07 , 0xE3 },}; + int p[4][4]={{1, 32, AV_CRC_32_IEEE_LE, 0x3D5CDD04}, + {0, 32, AV_CRC_32_IEEE , 0xC0F5BAE0}, + {0, 16, AV_CRC_16 , 0x1FBB }, + {0, 8, AV_CRC_8_ATM , 0xE3 },}; AVCRC ctx[1 ? 1024:257]; for(i=0; i