TRUNK:added a new indexer functionality to the library. With the new -jpip option...
[openjpeg.git] / libopenjpeg / thix_manager.c
1 /*
2  * $Id: thix_manager.c 897 2011-08-28 21:43:57Z Kaori.Hagihara@gmail.com $
3  *
4  * Copyright (c) 2002-2011, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
5  * Copyright (c) 2002-2011, Professor Benoit Macq
6  * Copyright (c) 2003-2004, Yannick Verschueren
7  * Copyright (c) 2010-2011, Kaori Hagihara
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 /*! \file
33  *  \brief Modification of jpip.c from 2KAN indexer
34  */
35
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include "indexbox_manager.h"
40 #include "cio.h"
41
42 /* 
43  * Write tile-part headers mhix box
44  *
45  * @param[in] coff      offset of j2k codestream
46  * @param[in] cstr_info codestream information
47  * @param[in] tileno    tile number
48  * @param[in] cio       file output handle
49  * @return              length of mhix box
50  */
51 int write_tilemhix( int coff, opj_codestream_info_t cstr_info, int tileno, opj_cio_t *cio);
52
53 int write_thix( int coff, opj_codestream_info_t cstr_info, opj_cio_t *cio)
54 {
55   int len, lenp, i;
56   int tileno;
57   opj_jp2_box_t *box;
58
59   lenp = 0;
60   box = (opj_jp2_box_t *)calloc( cstr_info.tw*cstr_info.th, sizeof(opj_jp2_box_t));
61
62   for ( i = 0; i < 2 ; i++ ){
63     if (i)
64       cio_seek( cio, lenp);
65
66     lenp = cio_tell( cio);
67     cio_skip( cio, 4);              /* L [at the end] */
68     cio_write( cio, JPIP_THIX, 4);  /* THIX           */
69     write_manf( i, cstr_info.tw*cstr_info.th, box, cio);
70     
71     for (tileno = 0; tileno < cstr_info.tw*cstr_info.th; tileno++){
72       box[tileno].length = write_tilemhix( coff, cstr_info, tileno, cio);
73       box[tileno].type = JPIP_MHIX;
74     }
75  
76     len = cio_tell( cio)-lenp;
77     cio_seek( cio, lenp);
78     cio_write( cio, len, 4);        /* L              */
79     cio_seek( cio, lenp+len);
80   }
81
82   free(box);
83
84   return len;
85 }
86
87 int write_tilemhix( int coff, opj_codestream_info_t cstr_info, int tileno, opj_cio_t *cio)
88 {
89   int i;
90   opj_tile_info_t tile;
91   opj_tp_info_t tp;
92   int marknum;
93   int len, lenp;
94   opj_marker_info_t *marker;
95
96   lenp = cio_tell( cio);
97   cio_skip( cio, 4);                               /* L [at the end]                    */
98   cio_write( cio, JPIP_MHIX, 4);                   /* MHIX                              */
99
100   tile = cstr_info.tile[tileno];
101   tp = tile.tp[0];
102
103   cio_write( cio, tp.tp_end_header-tp.tp_start_pos+1, 8);  /* TLEN                              */ 
104
105   marker = cstr_info.tile[tileno].marker;
106
107   for( i=0; i<cstr_info.tile[tileno].marknum; i++){             /* Marker restricted to 1 apparition */
108     cio_write( cio, marker[i].type, 2);
109     cio_write( cio, 0, 2);
110     cio_write( cio, marker[i].pos-coff, 8);
111     cio_write( cio, marker[i].len, 2);
112   }
113      
114   //  free( marker);
115
116   len = cio_tell( cio) - lenp;
117   cio_seek( cio, lenp);
118   cio_write( cio, len, 4);        /* L           */
119   cio_seek( cio, lenp+len);
120
121   return len;
122 }