Mercurial > libavutil.hg
annotate crc.c @ 252:3c7dd1a3cfe8 libavutil
remove [U]INT64_C definition
author | mru |
---|---|
date | Sun, 25 Feb 2007 19:30:55 +0000 |
parents | d76a36742464 |
children | 0df19c6b37d0 |
rev | line source |
---|---|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
1 /* |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
3 * |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
4 * This file is part of FFmpeg. |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
5 * |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
7 * modify it under the terms of the GNU Lesser General Public |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
8 * License as published by the Free Software Foundation; either |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
10 * |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
14 * Lesser General Public License for more details. |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
15 * |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
16 * You should have received a copy of the GNU Lesser General Public |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
108
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
19 */ |
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
61
diff
changeset
|
20 |
30 | 21 #include "common.h" |
22 #include "crc.h" | |
23 | |
24 AVCRC *av_crcEDB88320; | |
25 AVCRC *av_crc04C11DB7; | |
26 AVCRC *av_crc8005 ; | |
27 AVCRC *av_crc07 ; | |
28 | |
29 /** | |
30 * Inits a crc table. | |
31 * @param ctx must be an array of sizeof(AVCRC)*257 or sizeof(AVCRC)*1024 | |
32 * @param cts_size size of ctx in bytes | |
33 * @return <0 on failure | |
34 */ | |
35 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){ | |
36 int i, j; | |
37 uint32_t c; | |
38 | |
39 if (bits < 8 || bits > 32 || poly >= (1LL<<bits)) | |
40 return -1; | |
41 if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024) | |
42 return -1; | |
43 | |
44 for (i = 0; i < 256; i++) { | |
45 if (le) { | |
46 for (c = i, j = 0; j < 8; j++) | |
47 c = (c>>1)^(poly & (-(c&1))); | |
48 ctx[i] = c; | |
49 } else { | |
50 for (c = i << 24, j = 0; j < 8; j++) | |
51 c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) ); | |
52 ctx[i] = bswap_32(c); | |
53 } | |
54 } | |
55 ctx[256]=1; | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
56 #ifndef CONFIG_SMALL |
30 | 57 if(ctx_size >= sizeof(AVCRC)*1024) |
58 for (i = 0; i < 256; i++) | |
59 for(j=0; j<3; j++) | |
60 ctx[256*(j+1) + i]= (ctx[256*j + i]>>8) ^ ctx[ ctx[256*j + i]&0xFF ]; | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
61 #endif |
30 | 62 |
63 return 0; | |
64 } | |
65 | |
66 uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length){ | |
67 const uint8_t *end= buffer+length; | |
68 | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
69 #ifndef CONFIG_SMALL |
30 | 70 if(!ctx[256]) |
71 while(buffer<end-3){ | |
72 crc ^= le2me_32(*(uint32_t*)buffer); buffer+=4; | |
73 crc = ctx[3*256 + ( crc &0xFF)] | |
74 ^ctx[2*256 + ((crc>>8 )&0xFF)] | |
75 ^ctx[1*256 + ((crc>>16)&0xFF)] | |
76 ^ctx[0*256 + ((crc>>24) )]; | |
77 } | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
78 #endif |
30 | 79 while(buffer<end) |
80 crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8); | |
81 | |
82 return crc; | |
83 } | |
84 | |
85 #ifdef TEST | |
86 #undef printf | |
87 main(){ | |
88 uint8_t buf[1999]; | |
89 int i; | |
90 int p[4][4]={{1, 32, 0xedb88320L, 0x3D5CDD04}, | |
91 {0, 32, 0x04c11db7L, 0xC0F5BAE0}, | |
92 {0, 16, 0x8005 , 0x1FBB }, | |
93 {0, 8, 0x07 , 0xE3 },}; | |
94 AVCRC ctx[1 ? 1024:257]; | |
95 | |
96 for(i=0; i<sizeof(buf); i++) | |
97 buf[i]= i+i*i; | |
98 | |
99 for(i=0; i<4; i++){ | |
100 av_crc_init(ctx, p[i][0], p[i][1], p[i][2], sizeof(ctx)); | |
101 printf("crc %08X =%X\n", p[i][2], av_crc(ctx, 0, buf, sizeof(buf))); | |
102 } | |
103 } | |
104 #endif |