Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
124 lines (97 loc) · 3.31 KB

SDL_test_crc32.h

File metadata and controls

124 lines (97 loc) · 3.31 KB
 
Nov 29, 2012
Nov 29, 2012
1
2
/*
Simple DirectMedia Layer
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
Nov 29, 2012
Nov 29, 2012
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/**
* \file SDL_test_crc32.h
May 18, 2013
May 18, 2013
24
*
Nov 29, 2012
Nov 29, 2012
25
26
27
28
29
* Include file for SDL test framework.
*
* This code is a part of the SDL2_test library, not the main SDL library.
*/
May 18, 2013
May 18, 2013
30
/*
Nov 29, 2012
Nov 29, 2012
31
32
Implements CRC32 calculations (default output is Perl String::CRC32 compatible).
May 18, 2013
May 18, 2013
33
Nov 29, 2012
Nov 29, 2012
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
*/
#ifndef _SDL_test_crc32_h
#define _SDL_test_crc32_h
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif
/* ------------ Definitions --------- */
/* Definition shared by all CRC routines */
#ifndef CrcUint32
May 18, 2013
May 18, 2013
51
#define CrcUint32 unsigned int
Nov 29, 2012
Nov 29, 2012
52
53
#endif
#ifndef CrcUint8
May 18, 2013
May 18, 2013
54
#define CrcUint8 unsigned char
Nov 29, 2012
Nov 29, 2012
55
56
57
#endif
#ifdef ORIGINAL_METHOD
May 18, 2013
May 18, 2013
58
#define CRC32_POLY 0x04c11db7 /* AUTODIN II, Ethernet, & FDDI */
Nov 29, 2012
Nov 29, 2012
59
60
61
62
#else
#define CRC32_POLY 0xEDB88320 /* Perl String::CRC32 compatible */
#endif
May 18, 2013
May 18, 2013
63
64
/**
* Data structure for CRC32 (checksum) computation
Nov 29, 2012
Nov 29, 2012
65
66
67
68
69
70
71
*/
typedef struct {
CrcUint32 crc32_table[256]; /* CRC table */
} SDLTest_Crc32Context;
/* ---------- Function Prototypes ------------- */
May 18, 2013
May 18, 2013
72
/**
Nov 29, 2012
Nov 29, 2012
73
74
75
76
* /brief Initialize the CRC context
*
* Note: The function initializes the crc table required for all crc calculations.
*
May 18, 2013
May 18, 2013
77
* /param crcContext pointer to context variable
Nov 29, 2012
Nov 29, 2012
78
79
80
81
82
83
84
85
86
*
* /returns 0 for OK, -1 on error
*
*/
int SDLTest_Crc32Init(SDLTest_Crc32Context * crcContext);
/**
* /brief calculate a crc32 from a data block
May 18, 2013
May 18, 2013
87
88
*
* /param crcContext pointer to context variable
Nov 29, 2012
Nov 29, 2012
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* /param inBuf input buffer to checksum
* /param inLen length of input buffer
* /param crc32 pointer to Uint32 to store the final CRC into
*
* /returns 0 for OK, -1 on error
*
*/
int SDLTest_crc32Calc(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32);
/* Same routine broken down into three steps */
int SDLTest_Crc32CalcStart(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32);
int SDLTest_Crc32CalcEnd(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32);
int SDLTest_Crc32CalcBuffer(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32);
/**
* /brief clean up CRC context
*
May 18, 2013
May 18, 2013
107
* /param crcContext pointer to context variable
Nov 29, 2012
Nov 29, 2012
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
*
* /returns 0 for OK, -1 on error
*
*/
int SDLTest_Crc32Done(SDLTest_Crc32Context * crcContext);
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif /* _SDL_test_crc32_h */
/* vi: set ts=4 sw=4 expandtab: */