f5958f64f52f7a94d83d744aac2c3ade2e2e139a
[openjpeg.git] / src / lib / openjpip / boxheader_manager.c
1 /*
2  * $Id$
3  *
4  * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
5  * Copyright (c) 2002-2014, Professor Benoit Macq
6  * Copyright (c) 2010-2011, Kaori Hagihara
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 <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <stdlib.h>
35 #include "boxheader_manager.h"
36 #include "opj_inttypes.h"
37
38 #ifdef SERVER
39 #include "fcgi_stdio.h"
40 #define logstream FCGI_stdout
41 #else
42 #define FCGI_stdout stdout
43 #define FCGI_stderr stderr
44 #define logstream stderr
45 #endif /*SERVER*/
46
47
48 boxheader_param_t * gene_boxheader(int fd, OPJ_OFF_T offset)
49 {
50     Byte8_t boxlen;
51     Byte_t headlen;
52     char *boxtype;
53     boxheader_param_t *boxheader;
54
55     boxlen = fetch_4bytebigendian(fd, offset);
56     boxtype = (char *)fetch_bytes(fd, offset + 4, 4);
57     headlen = 8;
58
59     if (boxlen == 1) { /* read XLBox */
60         boxlen = fetch_8bytebigendian(fd, offset + 8);
61         headlen = 16;
62     }
63
64     boxheader = (boxheader_param_t *)malloc(sizeof(boxheader_param_t));
65     boxheader->headlen = headlen;
66     boxheader->length = boxlen;
67     strncpy(boxheader->type, boxtype, 4);
68     boxheader->next = NULL;
69
70     free(boxtype);
71     return boxheader;
72 }
73
74 boxheader_param_t * gene_childboxheader(box_param_t *superbox, OPJ_OFF_T offset)
75 {
76     return gene_boxheader(superbox->fd, get_DBoxoff(superbox) + offset);
77 }
78
79 void print_boxheader(boxheader_param_t *boxheader)
80 {
81     fprintf(logstream, "boxheader info:\n"
82             "\t type: %.4s\n"
83             "\t length:%" PRId64 " %#" PRIx64 "\n", boxheader->type, boxheader->length,
84             boxheader->length);
85 }