-
Notifications
You must be signed in to change notification settings - Fork 0
/
symbol.h
107 lines (92 loc) · 3.58 KB
/
symbol.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*------------------------------------------------------------------------
* Copyright 2007-2009 (c) Jeff Brown <spadix@users.sourceforge.net>
*
* This file is part of the ZBar Bar Code Reader.
*
* The ZBar Bar Code Reader is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* The ZBar Bar Code Reader is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser Public License
* along with the ZBar Bar Code Reader; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* http://sourceforge.net/projects/zbar
*------------------------------------------------------------------------*/
#ifndef _SYMBOL_H_
#define _SYMBOL_H_
#include <stdlib.h>
#include <zbar.h>
#include "refcnt.h"
#include "vmsys.h"
#include "vmio.h"
#define malloc vm_malloc
#define free vm_free
#define calloc(x,y) vm_calloc(x*y)
#define realloc vm_realloc
#define assert(x) if(!(x)){vm_exit_app();while(1){};}
typedef struct point_s {
int x, y;
} point_t;
struct zbar_symbol_set_s {
refcnt_t refcnt;
int nsyms; /* number of filtered symbols */
zbar_symbol_t *head; /* first of decoded symbol results */
zbar_symbol_t *tail; /* last of unfiltered symbol results */
};
struct zbar_symbol_s {
zbar_symbol_type_t type; /* symbol type */
unsigned int data_alloc; /* allocation size of data */
unsigned int datalen; /* length of binary symbol data */
char *data; /* symbol data */
unsigned pts_alloc; /* allocation size of pts */
unsigned npts; /* number of points in location polygon */
point_t *pts; /* list of points in location polygon */
refcnt_t refcnt; /* reference count */
zbar_symbol_t *next; /* linked list of results (or siblings) */
zbar_symbol_set_t *syms; /* components of composite result */
unsigned long time; /* relative symbol capture time */
int cache_count; /* cache state */
int quality; /* relative symbol reliability metric */
};
extern void _zbar_symbol_free(zbar_symbol_t*);
extern zbar_symbol_set_t *_zbar_symbol_set_create(void);
extern void _zbar_symbol_set_free(zbar_symbol_set_t*);
static void sym_add_point (zbar_symbol_t *sym,
int x,
int y)
{
int i = sym->npts;
if(++sym->npts >= sym->pts_alloc) {
if (sym->pts == NULL)
{
sym->pts = vm_malloc(++sym->pts_alloc * sizeof(point_t));
} else {
sym->pts = vm_realloc(sym->pts, ++sym->pts_alloc * sizeof(point_t));
}
}
sym->pts[i].x = x;
sym->pts[i].y = y;
}
static void _zbar_symbol_refcnt (zbar_symbol_t *sym,
int delta)
{
if(!_zbar_refcnt(&sym->refcnt, delta) && delta <= 0)
_zbar_symbol_free(sym);
}
static void _zbar_symbol_set_add (zbar_symbol_set_t *syms,
zbar_symbol_t *sym)
{
sym->next = syms->head;
syms->head = sym;
syms->nsyms++;
_zbar_symbol_refcnt(sym, 1);
}
#endif