Mercurial > libavutil.hg
annotate crc.c @ 408:0ce74d34d02e libavutil
use av_log_get/set_level()
author | mru |
---|---|
date | Wed, 12 Dec 2007 21:48:50 +0000 |
parents | f9a4c04ebb0e |
children | 40ef1f81f445 |
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 | |
317 | 24 #if LIBAVUTIL_VERSION_INT < (50<<16) |
30 | 25 AVCRC *av_crcEDB88320; |
26 AVCRC *av_crc04C11DB7; | |
27 AVCRC *av_crc8005 ; | |
28 AVCRC *av_crc07 ; | |
317 | 29 #else |
30 AVCRC av_crcEDB88320[257]; | |
31 AVCRC av_crc04C11DB7[257]; | |
32 AVCRC av_crc8005 [257]; | |
33 AVCRC av_crc07 [257]; | |
34 #endif | |
30 | 35 |
36 /** | |
37 * Inits a crc table. | |
38 * @param ctx must be an array of sizeof(AVCRC)*257 or sizeof(AVCRC)*1024 | |
39 * @param cts_size size of ctx in bytes | |
377 | 40 * @param le if 1, lowest bit represents coefficient for highest exponent |
41 * of corresponding polynomial (both for poly and actual CRC). | |
42 * If 0, you must swap the crc parameter and the result of av_crc | |
43 * if you need the standard representation (can be simplified in | |
44 * most cases to e.g. bswap16): | |
45 * bswap_32(crc << (32-bits)) | |
46 * @param bits number of bits for the CRC | |
47 * @param poly generator polynomial without the x**bits coefficient, in the | |
48 * representation as specified by le | |
30 | 49 * @return <0 on failure |
50 */ | |
51 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){ | |
52 int i, j; | |
53 uint32_t c; | |
54 | |
55 if (bits < 8 || bits > 32 || poly >= (1LL<<bits)) | |
56 return -1; | |
57 if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024) | |
58 return -1; | |
59 | |
60 for (i = 0; i < 256; i++) { | |
61 if (le) { | |
62 for (c = i, j = 0; j < 8; j++) | |
63 c = (c>>1)^(poly & (-(c&1))); | |
64 ctx[i] = c; | |
65 } else { | |
66 for (c = i << 24, j = 0; j < 8; j++) | |
67 c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) ); | |
68 ctx[i] = bswap_32(c); | |
69 } | |
70 } | |
71 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
|
72 #ifndef CONFIG_SMALL |
30 | 73 if(ctx_size >= sizeof(AVCRC)*1024) |
74 for (i = 0; i < 256; i++) | |
75 for(j=0; j<3; j++) | |
76 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
|
77 #endif |
30 | 78 |
79 return 0; | |
80 } | |
81 | |
377 | 82 /** |
83 * Calculate the CRC of a block | |
84 * @param crc CRC of previous blocks if any or initial value for CRC. | |
85 * @return CRC updated with the data from the given block | |
86 * | |
87 * @see av_crc_init() "le" parameter | |
88 */ | |
30 | 89 uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length){ |
90 const uint8_t *end= buffer+length; | |
91 | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
92 #ifndef CONFIG_SMALL |
30 | 93 if(!ctx[256]) |
94 while(buffer<end-3){ | |
95 crc ^= le2me_32(*(uint32_t*)buffer); buffer+=4; | |
96 crc = ctx[3*256 + ( crc &0xFF)] | |
97 ^ctx[2*256 + ((crc>>8 )&0xFF)] | |
98 ^ctx[1*256 + ((crc>>16)&0xFF)] | |
99 ^ctx[0*256 + ((crc>>24) )]; | |
100 } | |
61
f85d07038450
put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents:
30
diff
changeset
|
101 #endif |
30 | 102 while(buffer<end) |
103 crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8); | |
104 | |
105 return crc; | |
106 } | |
107 | |
108 #ifdef TEST | |
109 #undef printf | |
404 | 110 main(void){ |
30 | 111 uint8_t buf[1999]; |
112 int i; | |
376
b1953daf424e
Use defines instead of raw hex numbers to specify CRC polynomials
reimar
parents:
317
diff
changeset
|
113 int p[4][4]={{1, 32, AV_CRC_32_IEEE_LE, 0x3D5CDD04}, |
b1953daf424e
Use defines instead of raw hex numbers to specify CRC polynomials
reimar
parents:
317
diff
changeset
|
114 {0, 32, AV_CRC_32_IEEE , 0xC0F5BAE0}, |
b1953daf424e
Use defines instead of raw hex numbers to specify CRC polynomials
reimar
parents:
317
diff
changeset
|
115 {0, 16, AV_CRC_16 , 0x1FBB }, |
b1953daf424e
Use defines instead of raw hex numbers to specify CRC polynomials
reimar
parents:
317
diff
changeset
|
116 {0, 8, AV_CRC_8_ATM , 0xE3 },}; |
30 | 117 AVCRC ctx[1 ? 1024:257]; |
118 | |
119 for(i=0; i<sizeof(buf); i++) | |
120 buf[i]= i+i*i; | |
121 | |
122 for(i=0; i<4; i++){ | |
123 av_crc_init(ctx, p[i][0], p[i][1], p[i][2], sizeof(ctx)); | |
124 printf("crc %08X =%X\n", p[i][2], av_crc(ctx, 0, buf, sizeof(buf))); | |
125 } | |
126 } | |
127 #endif |