quirc-rb 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +32 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +32 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ext/quirc/extconf.rb +28 -0
- data/ext/quirc/quirc.c +146 -0
- data/ext/src/Makefile +103 -0
- data/ext/src/lib/decode.c +945 -0
- data/ext/src/lib/identify.c +1139 -0
- data/ext/src/lib/quirc.c +165 -0
- data/ext/src/lib/quirc.h +178 -0
- data/ext/src/lib/quirc_internal.h +129 -0
- data/ext/src/lib/version_db.c +421 -0
- data/lib/quirc.rb +33 -0
- data/lib/quirc/ext/string_camelize.rb +13 -0
- data/lib/quirc/image_processor.rb +25 -0
- data/lib/quirc/image_processor/mini_magick.rb +43 -0
- data/lib/quirc/image_processor/vips.rb +50 -0
- data/lib/quirc/version.rb +5 -0
- data/quirc.gemspec +32 -0
- metadata +90 -0
data/ext/src/lib/quirc.c
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
/* quirc -- QR-code recognition library
|
2
|
+
* Copyright (C) 2010-2012 Daniel Beer <dlbeer@gmail.com>
|
3
|
+
*
|
4
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
5
|
+
* purpose with or without fee is hereby granted, provided that the above
|
6
|
+
* copyright notice and this permission notice appear in all copies.
|
7
|
+
*
|
8
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
*/
|
16
|
+
|
17
|
+
#include <stdlib.h>
|
18
|
+
#include <string.h>
|
19
|
+
#include "quirc_internal.h"
|
20
|
+
|
21
|
+
const char *quirc_version(void)
|
22
|
+
{
|
23
|
+
return "1.0";
|
24
|
+
}
|
25
|
+
|
26
|
+
struct quirc *quirc_new(void)
|
27
|
+
{
|
28
|
+
struct quirc *q = malloc(sizeof(*q));
|
29
|
+
|
30
|
+
if (!q)
|
31
|
+
return NULL;
|
32
|
+
|
33
|
+
memset(q, 0, sizeof(*q));
|
34
|
+
return q;
|
35
|
+
}
|
36
|
+
|
37
|
+
void quirc_destroy(struct quirc *q)
|
38
|
+
{
|
39
|
+
free(q->image);
|
40
|
+
/* q->pixels may alias q->image when their type representation is of the
|
41
|
+
same size, so we need to be careful here to avoid a double free */
|
42
|
+
if (!QUIRC_PIXEL_ALIAS_IMAGE)
|
43
|
+
free(q->pixels);
|
44
|
+
free(q->flood_fill_vars);
|
45
|
+
free(q);
|
46
|
+
}
|
47
|
+
|
48
|
+
int quirc_resize(struct quirc *q, int w, int h)
|
49
|
+
{
|
50
|
+
uint8_t *image = NULL;
|
51
|
+
quirc_pixel_t *pixels = NULL;
|
52
|
+
size_t num_vars;
|
53
|
+
size_t vars_byte_size;
|
54
|
+
struct quirc_flood_fill_vars *vars = NULL;
|
55
|
+
|
56
|
+
/*
|
57
|
+
* XXX: w and h should be size_t (or at least unsigned) as negatives
|
58
|
+
* values would not make much sense. The downside is that it would break
|
59
|
+
* both the API and ABI. Thus, at the moment, let's just do a sanity
|
60
|
+
* check.
|
61
|
+
*/
|
62
|
+
if (w < 0 || h < 0)
|
63
|
+
goto fail;
|
64
|
+
|
65
|
+
/*
|
66
|
+
* alloc a new buffer for q->image. We avoid realloc(3) because we want
|
67
|
+
* on failure to be leave `q` in a consistant, unmodified state.
|
68
|
+
*/
|
69
|
+
image = calloc(w, h);
|
70
|
+
if (!image)
|
71
|
+
goto fail;
|
72
|
+
|
73
|
+
/* compute the "old" (i.e. currently allocated) and the "new"
|
74
|
+
(i.e. requested) image dimensions */
|
75
|
+
size_t olddim = q->w * q->h;
|
76
|
+
size_t newdim = w * h;
|
77
|
+
size_t min = (olddim < newdim ? olddim : newdim);
|
78
|
+
|
79
|
+
/*
|
80
|
+
* copy the data into the new buffer, avoiding (a) to read beyond the
|
81
|
+
* old buffer when the new size is greater and (b) to write beyond the
|
82
|
+
* new buffer when the new size is smaller, hence the min computation.
|
83
|
+
*/
|
84
|
+
(void)memcpy(image, q->image, min);
|
85
|
+
|
86
|
+
/* alloc a new buffer for q->pixels if needed */
|
87
|
+
if (!QUIRC_PIXEL_ALIAS_IMAGE) {
|
88
|
+
pixels = calloc(newdim, sizeof(quirc_pixel_t));
|
89
|
+
if (!pixels)
|
90
|
+
goto fail;
|
91
|
+
}
|
92
|
+
|
93
|
+
/*
|
94
|
+
* alloc the work area for the flood filling logic.
|
95
|
+
*
|
96
|
+
* the size was chosen with the following assumptions and observations:
|
97
|
+
*
|
98
|
+
* - rings are the regions which requires the biggest work area.
|
99
|
+
* - they consumes the most when they are rotated by about 45 degree.
|
100
|
+
* in that case, the necessary depth is about (2 * height_of_the_ring).
|
101
|
+
* - the maximum height of rings would be about 1/3 of the image height.
|
102
|
+
*/
|
103
|
+
|
104
|
+
if ((size_t)h * 2 / 2 != h) {
|
105
|
+
goto fail; /* size_t overflow */
|
106
|
+
}
|
107
|
+
num_vars = (size_t)h * 2 / 3;
|
108
|
+
if (num_vars == 0) {
|
109
|
+
num_vars = 1;
|
110
|
+
}
|
111
|
+
|
112
|
+
vars_byte_size = sizeof(*vars) * num_vars;
|
113
|
+
if (vars_byte_size / sizeof(*vars) != num_vars) {
|
114
|
+
goto fail; /* size_t overflow */
|
115
|
+
}
|
116
|
+
vars = malloc(vars_byte_size);
|
117
|
+
if (!vars)
|
118
|
+
goto fail;
|
119
|
+
|
120
|
+
/* alloc succeeded, update `q` with the new size and buffers */
|
121
|
+
q->w = w;
|
122
|
+
q->h = h;
|
123
|
+
free(q->image);
|
124
|
+
q->image = image;
|
125
|
+
if (!QUIRC_PIXEL_ALIAS_IMAGE) {
|
126
|
+
free(q->pixels);
|
127
|
+
q->pixels = pixels;
|
128
|
+
}
|
129
|
+
free(q->flood_fill_vars);
|
130
|
+
q->flood_fill_vars = vars;
|
131
|
+
q->num_flood_fill_vars = num_vars;
|
132
|
+
|
133
|
+
return 0;
|
134
|
+
/* NOTREACHED */
|
135
|
+
fail:
|
136
|
+
free(image);
|
137
|
+
free(pixels);
|
138
|
+
free(vars);
|
139
|
+
|
140
|
+
return -1;
|
141
|
+
}
|
142
|
+
|
143
|
+
int quirc_count(const struct quirc *q)
|
144
|
+
{
|
145
|
+
return q->num_grids;
|
146
|
+
}
|
147
|
+
|
148
|
+
static const char *const error_table[] = {
|
149
|
+
[QUIRC_SUCCESS] = "Success",
|
150
|
+
[QUIRC_ERROR_INVALID_GRID_SIZE] = "Invalid grid size",
|
151
|
+
[QUIRC_ERROR_INVALID_VERSION] = "Invalid version",
|
152
|
+
[QUIRC_ERROR_FORMAT_ECC] = "Format data ECC failure",
|
153
|
+
[QUIRC_ERROR_DATA_ECC] = "ECC failure",
|
154
|
+
[QUIRC_ERROR_UNKNOWN_DATA_TYPE] = "Unknown data type",
|
155
|
+
[QUIRC_ERROR_DATA_OVERFLOW] = "Data overflow",
|
156
|
+
[QUIRC_ERROR_DATA_UNDERFLOW] = "Data underflow"
|
157
|
+
};
|
158
|
+
|
159
|
+
const char *quirc_strerror(quirc_decode_error_t err)
|
160
|
+
{
|
161
|
+
if (err >= 0 && err < sizeof(error_table) / sizeof(error_table[0]))
|
162
|
+
return error_table[err];
|
163
|
+
|
164
|
+
return "Unknown error";
|
165
|
+
}
|
data/ext/src/lib/quirc.h
ADDED
@@ -0,0 +1,178 @@
|
|
1
|
+
/* quirc -- QR-code recognition library
|
2
|
+
* Copyright (C) 2010-2012 Daniel Beer <dlbeer@gmail.com>
|
3
|
+
*
|
4
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
5
|
+
* purpose with or without fee is hereby granted, provided that the above
|
6
|
+
* copyright notice and this permission notice appear in all copies.
|
7
|
+
*
|
8
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
*/
|
16
|
+
|
17
|
+
#ifndef QUIRC_H_
|
18
|
+
#define QUIRC_H_
|
19
|
+
|
20
|
+
#include <stdint.h>
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
extern "C" {
|
24
|
+
#endif
|
25
|
+
|
26
|
+
struct quirc;
|
27
|
+
|
28
|
+
/* Obtain the library version string. */
|
29
|
+
const char *quirc_version(void);
|
30
|
+
|
31
|
+
/* Construct a new QR-code recognizer. This function will return NULL
|
32
|
+
* if sufficient memory could not be allocated.
|
33
|
+
*/
|
34
|
+
struct quirc *quirc_new(void);
|
35
|
+
|
36
|
+
/* Destroy a QR-code recognizer. */
|
37
|
+
void quirc_destroy(struct quirc *q);
|
38
|
+
|
39
|
+
/* Resize the QR-code recognizer. The size of an image must be
|
40
|
+
* specified before codes can be analyzed.
|
41
|
+
*
|
42
|
+
* This function returns 0 on success, or -1 if sufficient memory could
|
43
|
+
* not be allocated.
|
44
|
+
*/
|
45
|
+
int quirc_resize(struct quirc *q, int w, int h);
|
46
|
+
|
47
|
+
/* These functions are used to process images for QR-code recognition.
|
48
|
+
* quirc_begin() must first be called to obtain access to a buffer into
|
49
|
+
* which the input image should be placed. Optionally, the current
|
50
|
+
* width and height may be returned.
|
51
|
+
*
|
52
|
+
* After filling the buffer, quirc_end() should be called to process
|
53
|
+
* the image for QR-code recognition. The locations and content of each
|
54
|
+
* code may be obtained using accessor functions described below.
|
55
|
+
*/
|
56
|
+
uint8_t *quirc_begin(struct quirc *q, int *w, int *h);
|
57
|
+
void quirc_end(struct quirc *q);
|
58
|
+
|
59
|
+
/* This structure describes a location in the input image buffer. */
|
60
|
+
struct quirc_point {
|
61
|
+
int x;
|
62
|
+
int y;
|
63
|
+
};
|
64
|
+
|
65
|
+
/* This enum describes the various decoder errors which may occur. */
|
66
|
+
typedef enum {
|
67
|
+
QUIRC_SUCCESS = 0,
|
68
|
+
QUIRC_ERROR_INVALID_GRID_SIZE,
|
69
|
+
QUIRC_ERROR_INVALID_VERSION,
|
70
|
+
QUIRC_ERROR_FORMAT_ECC,
|
71
|
+
QUIRC_ERROR_DATA_ECC,
|
72
|
+
QUIRC_ERROR_UNKNOWN_DATA_TYPE,
|
73
|
+
QUIRC_ERROR_DATA_OVERFLOW,
|
74
|
+
QUIRC_ERROR_DATA_UNDERFLOW
|
75
|
+
} quirc_decode_error_t;
|
76
|
+
|
77
|
+
/* Return a string error message for an error code. */
|
78
|
+
const char *quirc_strerror(quirc_decode_error_t err);
|
79
|
+
|
80
|
+
/* Limits on the maximum size of QR-codes and their content. */
|
81
|
+
#define QUIRC_MAX_VERSION 40
|
82
|
+
#define QUIRC_MAX_GRID_SIZE (QUIRC_MAX_VERSION * 4 + 17)
|
83
|
+
#define QUIRC_MAX_BITMAP (((QUIRC_MAX_GRID_SIZE * QUIRC_MAX_GRID_SIZE) + 7) / 8)
|
84
|
+
#define QUIRC_MAX_PAYLOAD 8896
|
85
|
+
|
86
|
+
/* QR-code ECC types. */
|
87
|
+
#define QUIRC_ECC_LEVEL_M 0
|
88
|
+
#define QUIRC_ECC_LEVEL_L 1
|
89
|
+
#define QUIRC_ECC_LEVEL_H 2
|
90
|
+
#define QUIRC_ECC_LEVEL_Q 3
|
91
|
+
|
92
|
+
/* QR-code data types. */
|
93
|
+
#define QUIRC_DATA_TYPE_NUMERIC 1
|
94
|
+
#define QUIRC_DATA_TYPE_ALPHA 2
|
95
|
+
#define QUIRC_DATA_TYPE_BYTE 4
|
96
|
+
#define QUIRC_DATA_TYPE_KANJI 8
|
97
|
+
|
98
|
+
/* Common character encodings */
|
99
|
+
#define QUIRC_ECI_ISO_8859_1 1
|
100
|
+
#define QUIRC_ECI_IBM437 2
|
101
|
+
#define QUIRC_ECI_ISO_8859_2 4
|
102
|
+
#define QUIRC_ECI_ISO_8859_3 5
|
103
|
+
#define QUIRC_ECI_ISO_8859_4 6
|
104
|
+
#define QUIRC_ECI_ISO_8859_5 7
|
105
|
+
#define QUIRC_ECI_ISO_8859_6 8
|
106
|
+
#define QUIRC_ECI_ISO_8859_7 9
|
107
|
+
#define QUIRC_ECI_ISO_8859_8 10
|
108
|
+
#define QUIRC_ECI_ISO_8859_9 11
|
109
|
+
#define QUIRC_ECI_WINDOWS_874 13
|
110
|
+
#define QUIRC_ECI_ISO_8859_13 15
|
111
|
+
#define QUIRC_ECI_ISO_8859_15 17
|
112
|
+
#define QUIRC_ECI_SHIFT_JIS 20
|
113
|
+
#define QUIRC_ECI_UTF_8 26
|
114
|
+
|
115
|
+
/* This structure is used to return information about detected QR codes
|
116
|
+
* in the input image.
|
117
|
+
*/
|
118
|
+
struct quirc_code {
|
119
|
+
/* The four corners of the QR-code, from top left, clockwise */
|
120
|
+
struct quirc_point corners[4];
|
121
|
+
|
122
|
+
/* The number of cells across in the QR-code. The cell bitmap
|
123
|
+
* is a bitmask giving the actual values of cells. If the cell
|
124
|
+
* at (x, y) is black, then the following bit is set:
|
125
|
+
*
|
126
|
+
* cell_bitmap[i >> 3] & (1 << (i & 7))
|
127
|
+
*
|
128
|
+
* where i = (y * size) + x.
|
129
|
+
*/
|
130
|
+
int size;
|
131
|
+
uint8_t cell_bitmap[QUIRC_MAX_BITMAP];
|
132
|
+
};
|
133
|
+
|
134
|
+
/* This structure holds the decoded QR-code data */
|
135
|
+
struct quirc_data {
|
136
|
+
/* Various parameters of the QR-code. These can mostly be
|
137
|
+
* ignored if you only care about the data.
|
138
|
+
*/
|
139
|
+
int version;
|
140
|
+
int ecc_level;
|
141
|
+
int mask;
|
142
|
+
|
143
|
+
/* This field is the highest-valued data type found in the QR
|
144
|
+
* code.
|
145
|
+
*/
|
146
|
+
int data_type;
|
147
|
+
|
148
|
+
/* Data payload. For the Kanji datatype, payload is encoded as
|
149
|
+
* Shift-JIS. For all other datatypes, payload is ASCII text.
|
150
|
+
*/
|
151
|
+
uint8_t payload[QUIRC_MAX_PAYLOAD];
|
152
|
+
int payload_len;
|
153
|
+
|
154
|
+
/* ECI assignment number */
|
155
|
+
uint32_t eci;
|
156
|
+
};
|
157
|
+
|
158
|
+
/* Return the number of QR-codes identified in the last processed
|
159
|
+
* image.
|
160
|
+
*/
|
161
|
+
int quirc_count(const struct quirc *q);
|
162
|
+
|
163
|
+
/* Extract the QR-code specified by the given index. */
|
164
|
+
void quirc_extract(const struct quirc *q, int index,
|
165
|
+
struct quirc_code *code);
|
166
|
+
|
167
|
+
/* Decode a QR-code, returning the payload data. */
|
168
|
+
quirc_decode_error_t quirc_decode(const struct quirc_code *code,
|
169
|
+
struct quirc_data *data);
|
170
|
+
|
171
|
+
/* Flip a QR-code according to optional mirror feature of ISO 18004:2015 */
|
172
|
+
void quirc_flip(struct quirc_code *code);
|
173
|
+
|
174
|
+
#ifdef __cplusplus
|
175
|
+
}
|
176
|
+
#endif
|
177
|
+
|
178
|
+
#endif
|
@@ -0,0 +1,129 @@
|
|
1
|
+
/* quirc -- QR-code recognition library
|
2
|
+
* Copyright (C) 2010-2012 Daniel Beer <dlbeer@gmail.com>
|
3
|
+
*
|
4
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
5
|
+
* purpose with or without fee is hereby granted, provided that the above
|
6
|
+
* copyright notice and this permission notice appear in all copies.
|
7
|
+
*
|
8
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
*/
|
16
|
+
|
17
|
+
#ifndef QUIRC_INTERNAL_H_
|
18
|
+
#define QUIRC_INTERNAL_H_
|
19
|
+
|
20
|
+
#include <assert.h>
|
21
|
+
#include <stdlib.h>
|
22
|
+
|
23
|
+
#include "quirc.h"
|
24
|
+
|
25
|
+
#define QUIRC_ASSERT(a) assert(a)
|
26
|
+
|
27
|
+
#define QUIRC_PIXEL_WHITE 0
|
28
|
+
#define QUIRC_PIXEL_BLACK 1
|
29
|
+
#define QUIRC_PIXEL_REGION 2
|
30
|
+
|
31
|
+
#ifndef QUIRC_MAX_REGIONS
|
32
|
+
#define QUIRC_MAX_REGIONS 254
|
33
|
+
#endif
|
34
|
+
#define QUIRC_MAX_CAPSTONES 32
|
35
|
+
#define QUIRC_MAX_GRIDS (QUIRC_MAX_CAPSTONES * 2)
|
36
|
+
|
37
|
+
#define QUIRC_PERSPECTIVE_PARAMS 8
|
38
|
+
|
39
|
+
#if QUIRC_MAX_REGIONS < UINT8_MAX
|
40
|
+
#define QUIRC_PIXEL_ALIAS_IMAGE 1
|
41
|
+
typedef uint8_t quirc_pixel_t;
|
42
|
+
#elif QUIRC_MAX_REGIONS < UINT16_MAX
|
43
|
+
#define QUIRC_PIXEL_ALIAS_IMAGE 0
|
44
|
+
typedef uint16_t quirc_pixel_t;
|
45
|
+
#else
|
46
|
+
#error "QUIRC_MAX_REGIONS > 65534 is not supported"
|
47
|
+
#endif
|
48
|
+
|
49
|
+
struct quirc_region {
|
50
|
+
struct quirc_point seed;
|
51
|
+
int count;
|
52
|
+
int capstone;
|
53
|
+
};
|
54
|
+
|
55
|
+
struct quirc_capstone {
|
56
|
+
int ring;
|
57
|
+
int stone;
|
58
|
+
|
59
|
+
struct quirc_point corners[4];
|
60
|
+
struct quirc_point center;
|
61
|
+
double c[QUIRC_PERSPECTIVE_PARAMS];
|
62
|
+
|
63
|
+
int qr_grid;
|
64
|
+
};
|
65
|
+
|
66
|
+
struct quirc_grid {
|
67
|
+
/* Capstone indices */
|
68
|
+
int caps[3];
|
69
|
+
|
70
|
+
/* Alignment pattern region and corner */
|
71
|
+
int align_region;
|
72
|
+
struct quirc_point align;
|
73
|
+
|
74
|
+
/* Timing pattern endpoints */
|
75
|
+
struct quirc_point tpep[3];
|
76
|
+
|
77
|
+
/* Grid size and perspective transform */
|
78
|
+
int grid_size;
|
79
|
+
double c[QUIRC_PERSPECTIVE_PARAMS];
|
80
|
+
};
|
81
|
+
|
82
|
+
struct quirc_flood_fill_vars {
|
83
|
+
int y;
|
84
|
+
int right;
|
85
|
+
int left_up;
|
86
|
+
int left_down;
|
87
|
+
};
|
88
|
+
|
89
|
+
struct quirc {
|
90
|
+
uint8_t *image;
|
91
|
+
quirc_pixel_t *pixels;
|
92
|
+
int w;
|
93
|
+
int h;
|
94
|
+
|
95
|
+
int num_regions;
|
96
|
+
struct quirc_region regions[QUIRC_MAX_REGIONS];
|
97
|
+
|
98
|
+
int num_capstones;
|
99
|
+
struct quirc_capstone capstones[QUIRC_MAX_CAPSTONES];
|
100
|
+
|
101
|
+
int num_grids;
|
102
|
+
struct quirc_grid grids[QUIRC_MAX_GRIDS];
|
103
|
+
|
104
|
+
size_t num_flood_fill_vars;
|
105
|
+
struct quirc_flood_fill_vars *flood_fill_vars;
|
106
|
+
};
|
107
|
+
|
108
|
+
/************************************************************************
|
109
|
+
* QR-code version information database
|
110
|
+
*/
|
111
|
+
|
112
|
+
#define QUIRC_MAX_VERSION 40
|
113
|
+
#define QUIRC_MAX_ALIGNMENT 7
|
114
|
+
|
115
|
+
struct quirc_rs_params {
|
116
|
+
int bs; /* Small block size */
|
117
|
+
int dw; /* Small data words */
|
118
|
+
int ns; /* Number of small blocks */
|
119
|
+
};
|
120
|
+
|
121
|
+
struct quirc_version_info {
|
122
|
+
int data_bytes;
|
123
|
+
int apat[QUIRC_MAX_ALIGNMENT];
|
124
|
+
struct quirc_rs_params ecc[4];
|
125
|
+
};
|
126
|
+
|
127
|
+
extern const struct quirc_version_info quirc_version_db[QUIRC_MAX_VERSION + 1];
|
128
|
+
|
129
|
+
#endif
|