fixed minor bugs which were triggering warnings at compilation (different signedness...
[openjpeg.git] / libopenjpeg / raw.c
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
5  * Copyright (c) 2005, Herve Drolon, FreeImage Team
6  * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "raw.h"
32 #include "opj_malloc.h"
33
34 /* 
35 ==========================================================
36    local functions
37 ==========================================================
38 */
39
40
41 /* 
42 ==========================================================
43    RAW encoding interface
44 ==========================================================
45 */
46
47 opj_raw_t* raw_create(void) {
48         opj_raw_t *raw = (opj_raw_t*)opj_malloc(sizeof(opj_raw_t));
49         return raw;
50 }
51
52 void raw_destroy(opj_raw_t *raw) {
53         if(raw) {
54                 opj_free(raw);
55         }
56 }
57
58 OPJ_UINT32 raw_numbytes(opj_raw_t *raw) {
59         return raw->bp - raw->start;
60 }
61
62 void raw_init_dec(opj_raw_t *raw, OPJ_BYTE *bp, OPJ_UINT32 len) {
63         raw->start = bp;
64         raw->lenmax = len;
65         raw->len = 0;
66         raw->c = 0;
67         raw->ct = 0;
68 }
69
70 OPJ_UINT32 raw_decode(opj_raw_t *raw) {
71         OPJ_UINT32 d;
72         if (raw->ct == 0) {
73                 raw->ct = 8;
74                 if (raw->len == raw->lenmax) {
75                         raw->c = 0xff;
76                 } else {
77                         if (raw->c == 0xff) {
78                                 raw->ct = 7;
79                         }
80                         raw->c = *(raw->start + raw->len);
81                         raw->len++;
82                 }
83         }
84         raw->ct--;
85         d = (raw->c >> raw->ct) & 0x01;
86         
87         return d;
88 }
89