annotate crc.c @ 1028:5dbb12a37c3d libavutil tip

Move av_set_options_string() from libavfilter to libavutil.
author stefano
date Mon, 27 Sep 2010 22:09:53 +0000
parents f8db9a2bae05
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
599
49da89abe282 Add necessary, remove unnecessary #includes.
diego
parents: 581
diff changeset
21 #include "config.h"
873
4d9ad0ed07d0 Replace many includes of libavutil/common.h with what is actually needed
mru
parents: 741
diff changeset
22 #include "common.h"
599
49da89abe282 Add necessary, remove unnecessary #includes.
diego
parents: 581
diff changeset
23 #include "bswap.h"
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
24 #include "crc.h"
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
25
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 599
diff changeset
26 #if CONFIG_HARDCODED_TABLES
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
27 #include "crc_data.h"
317
0df19c6b37d0 kill 3 more av_mallocz_static()
michael
parents: 116
diff changeset
28 #else
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
29 static struct {
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
30 uint8_t le;
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
31 uint8_t bits;
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
32 uint32_t poly;
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
33 } av_crc_table_params[AV_CRC_MAX] = {
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
34 [AV_CRC_8_ATM] = { 0, 8, 0x07 },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
35 [AV_CRC_16_ANSI] = { 0, 16, 0x8005 },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
36 [AV_CRC_16_CCITT] = { 0, 16, 0x1021 },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
37 [AV_CRC_32_IEEE] = { 0, 32, 0x04C11DB7 },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
38 [AV_CRC_32_IEEE_LE] = { 1, 32, 0xEDB88320 },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
39 };
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
40 static AVCRC av_crc_table[AV_CRC_MAX][257];
317
0df19c6b37d0 kill 3 more av_mallocz_static()
michael
parents: 116
diff changeset
41 #endif
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
42
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
43 /**
957
e34e8d654ded Fix grammar errors in documentation
mru
parents: 873
diff changeset
44 * Initialize a CRC table.
637
683a6dbdd2b2 spelling/grammar/consistency review part III
diego
parents: 633
diff changeset
45 * @param ctx must be an array of size sizeof(AVCRC)*257 or sizeof(AVCRC)*1024
683a6dbdd2b2 spelling/grammar/consistency review part III
diego
parents: 633
diff changeset
46 * @param le If 1, the lowest bit represents the coefficient for the highest
683a6dbdd2b2 spelling/grammar/consistency review part III
diego
parents: 633
diff changeset
47 * exponent of the corresponding polynomial (both for poly and
683a6dbdd2b2 spelling/grammar/consistency review part III
diego
parents: 633
diff changeset
48 * actual CRC).
683a6dbdd2b2 spelling/grammar/consistency review part III
diego
parents: 633
diff changeset
49 * If 0, you must swap the CRC parameter and the result of av_crc
377
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
50 * if you need the standard representation (can be simplified in
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
51 * most cases to e.g. bswap16):
993
f8db9a2bae05 Add av_ prefix to bswap macros
mru
parents: 992
diff changeset
52 * av_bswap32(crc << (32-bits))
377
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
53 * @param bits number of bits for the CRC
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
54 * @param poly generator polynomial without the x**bits coefficient, in the
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
55 * representation as specified by le
971
18a757cdcba6 Fix parameter name and position in av_crc_init Doxygen documentation.
diego
parents: 957
diff changeset
56 * @param ctx_size size of ctx in bytes
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
57 * @return <0 on failure
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
58 */
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
59 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
60 int i, j;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
61 uint32_t c;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
62
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
63 if (bits < 8 || bits > 32 || poly >= (1LL<<bits))
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
64 return -1;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
65 if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
66 return -1;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
67
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
68 for (i = 0; i < 256; i++) {
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
69 if (le) {
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
70 for (c = i, j = 0; j < 8; j++)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
71 c = (c>>1)^(poly & (-(c&1)));
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
72 ctx[i] = c;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
73 } else {
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
74 for (c = i << 24, j = 0; j < 8; j++)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
75 c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) );
993
f8db9a2bae05 Add av_ prefix to bswap macros
mru
parents: 992
diff changeset
76 ctx[i] = av_bswap32(c);
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
77 }
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
78 }
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
79 ctx[256]=1;
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 599
diff changeset
80 #if !CONFIG_SMALL
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
81 if(ctx_size >= sizeof(AVCRC)*1024)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
82 for (i = 0; i < 256; i++)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
83 for(j=0; j<3; j++)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
84 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
85 #endif
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
86
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
87 return 0;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
88 }
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
89
377
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
90 /**
957
e34e8d654ded Fix grammar errors in documentation
mru
parents: 873
diff changeset
91 * Get an initialized standard CRC table.
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
92 * @param crc_id ID of a standard CRC
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
93 * @return a pointer to the CRC table or NULL on failure
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
94 */
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
95 const AVCRC *av_crc_get_table(AVCRCId crc_id){
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 599
diff changeset
96 #if !CONFIG_HARDCODED_TABLES
581
95c9067ebb73 uses FF_ARRAY_ELEMS() where appropriate
aurel
parents: 442
diff changeset
97 if (!av_crc_table[crc_id][FF_ARRAY_ELEMS(av_crc_table[crc_id])-1])
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
98 if (av_crc_init(av_crc_table[crc_id],
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
99 av_crc_table_params[crc_id].le,
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
100 av_crc_table_params[crc_id].bits,
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
101 av_crc_table_params[crc_id].poly,
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
102 sizeof(av_crc_table[crc_id])) < 0)
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
103 return NULL;
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
104 #endif
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
105 return av_crc_table[crc_id];
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
106 }
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
107
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
108 /**
957
e34e8d654ded Fix grammar errors in documentation
mru
parents: 873
diff changeset
109 * Calculate the CRC of a block.
633
8c48a1b999a3 spelling/grammar/consistency review part I
diego
parents: 603
diff changeset
110 * @param crc CRC of previous blocks if any or initial value for CRC
377
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
111 * @return CRC updated with the data from the given block
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
112 *
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
113 * @see av_crc_init() "le" parameter
c31bd8d4962f Additional documentation for CRC functions
reimar
parents: 376
diff changeset
114 */
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
115 uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length){
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
116 const uint8_t *end= buffer+length;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
117
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 599
diff changeset
118 #if !CONFIG_SMALL
741
63e3c82b92d9 Fix cast of byte buffer to uint32 that was disregarding alignment
heydowns
parents: 637
diff changeset
119 if(!ctx[256]) {
63e3c82b92d9 Fix cast of byte buffer to uint32 that was disregarding alignment
heydowns
parents: 637
diff changeset
120 while(((intptr_t) buffer & 3) && buffer < end)
63e3c82b92d9 Fix cast of byte buffer to uint32 that was disregarding alignment
heydowns
parents: 637
diff changeset
121 crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8);
63e3c82b92d9 Fix cast of byte buffer to uint32 that was disregarding alignment
heydowns
parents: 637
diff changeset
122
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
123 while(buffer<end-3){
993
f8db9a2bae05 Add av_ prefix to bswap macros
mru
parents: 992
diff changeset
124 crc ^= av_le2ne32(*(const uint32_t*)buffer); buffer+=4;
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
125 crc = ctx[3*256 + ( crc &0xFF)]
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
126 ^ctx[2*256 + ((crc>>8 )&0xFF)]
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
127 ^ctx[1*256 + ((crc>>16)&0xFF)]
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
128 ^ctx[0*256 + ((crc>>24) )];
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
129 }
741
63e3c82b92d9 Fix cast of byte buffer to uint32 that was disregarding alignment
heydowns
parents: 637
diff changeset
130 }
61
f85d07038450 put the code which is specific for the large crc table under #ifndef CONFIG_SMALL
michael
parents: 30
diff changeset
131 #endif
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
132 while(buffer<end)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
133 crc = ctx[((uint8_t)crc) ^ *buffer++] ^ (crc >> 8);
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
134
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
135 return crc;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
136 }
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
137
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
138 #ifdef TEST
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
139 #undef printf
427
e7192ff1857d Fix a couple of 'return type defaults to int' and 'control reaches end of
diego
parents: 422
diff changeset
140 int main(void){
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
141 uint8_t buf[1999];
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
142 int i;
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
143 int p[4][3]={{AV_CRC_32_IEEE_LE, 0xEDB88320, 0x3D5CDD04},
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
144 {AV_CRC_32_IEEE , 0x04C11DB7, 0xC0F5BAE0},
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
145 {AV_CRC_16_ANSI , 0x8005, 0x1FBB },
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
146 {AV_CRC_8_ATM , 0x07, 0xE3 },};
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
147 const AVCRC *ctx;
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
148
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
149 for(i=0; i<sizeof(buf); i++)
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
150 buf[i]= i+i*i;
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
151
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
152 for(i=0; i<4; i++){
420
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
153 ctx = av_crc_get_table(p[i][0]);
40ef1f81f445 improve CRC API
aurel
parents: 404
diff changeset
154 printf("crc %08X =%X\n", p[i][1], av_crc(ctx, 0, buf, sizeof(buf)));
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
155 }
427
e7192ff1857d Fix a couple of 'return type defaults to int' and 'control reaches end of
diego
parents: 422
diff changeset
156 return 0;
30
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
157 }
664e2d2b92b9 generic crc calculation code
michael
parents:
diff changeset
158 #endif