update j2k_lib with new opj type
[openjpeg.git] / libopenjpeg / ppix_manager.c
1 /*
2  * $Id: ppix_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 "opj_includes.h"
37
38 /* 
39  * Write faix box of ppix
40  *
41  * @param[in] coff offset of j2k codestream
42  * @param[in] compno    component number
43  * @param[in] cstr_info codestream information
44  * @param[in] EPHused   true if if EPH option used
45  * @param[in] j2klen    length of j2k codestream
46  * @param[in] cio       file output handle
47  * @return              length of faix box
48  */
49 int write_ppixfaix( int coff, int compno, opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio);
50
51 int write_ppix( int coff, opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio)
52 {
53   int len, lenp, compno, i;
54   opj_jp2_box_t *box;
55
56   /*  printf("cstr_info.packno %d\n", cstr_info.packno); //NMAX? */
57
58   lenp = -1;
59   box = (opj_jp2_box_t *)opj_calloc( cstr_info.numcomps, sizeof(opj_jp2_box_t));
60   
61   for (i=0;i<2;i++){
62     if (i) cio_seek( cio, lenp);
63     
64     lenp = cio_tell( cio);
65     cio_skip( cio, 4);              /* L [at the end] */
66     cio_write( cio, JPIP_PPIX, 4);  /* PPIX           */
67
68     write_manf( i, cstr_info.numcomps, box, cio);
69     
70     for (compno=0; compno<cstr_info.numcomps; compno++){
71       box[compno].length = write_ppixfaix( coff, compno, cstr_info, EPHused, j2klen, cio);
72       box[compno].type = JPIP_FAIX;
73     }
74    
75     len = cio_tell( cio)-lenp;
76     cio_seek( cio, lenp);
77     cio_write( cio, len, 4);        /* L              */
78     cio_seek( cio, lenp+len);
79   }
80   
81   opj_free(box);
82
83   return len;
84 }
85
86 int write_ppixfaix( int coff, int compno, opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio)
87 {
88   int len, lenp, tileno, version, i, nmax, size_of_coding; /* 4 or 8*/
89   opj_tile_info_t *tile_Idx;
90   opj_packet_info_t packet;
91   int resno, precno, layno, num_packet;
92   int numOfres, numOfprec, numOflayers;
93   packet.end_pos = packet.end_ph_pos = packet.start_pos = -1;
94   (void)EPHused; /* unused ? */
95
96   if( j2klen > pow( 2, 32)){
97     size_of_coding =  8;
98     version = 1;
99   }
100   else{
101     size_of_coding = 4;
102     version = 0;
103   }
104   
105   lenp = cio_tell( cio);
106   cio_skip( cio, 4);              /* L [at the end]      */
107   cio_write( cio, JPIP_FAIX, 4);  /* FAIX                */ 
108   cio_write( cio, version, 1);     /* Version 0 = 4 bytes */
109
110   nmax = 0;
111   for( i=0; i<=cstr_info.numdecompos[compno]; i++)
112     nmax += cstr_info.tile[0].ph[i] * cstr_info.tile[0].pw[i] * cstr_info.numlayers;
113   
114   cio_write( cio, nmax, size_of_coding); /* NMAX */
115   cio_write( cio, cstr_info.tw*cstr_info.th, size_of_coding);      /* M    */
116
117   for( tileno=0; tileno<cstr_info.tw*cstr_info.th; tileno++){
118     tile_Idx = &cstr_info.tile[ tileno];
119  
120     num_packet=0;
121     numOfres = cstr_info.numdecompos[compno] + 1;
122   
123     for( resno=0; resno<numOfres ; resno++){
124       numOfprec = tile_Idx->pw[resno]*tile_Idx->ph[resno];
125       for( precno=0; precno<numOfprec; precno++){
126         numOflayers = cstr_info.numlayers;
127         for( layno=0; layno<numOflayers; layno++){
128
129           switch ( cstr_info.prog){
130           case LRCP:
131             packet = tile_Idx->packet[ ((layno*numOfres+resno)*cstr_info.numcomps+compno)*numOfprec+precno];
132             break;
133           case RLCP:
134             packet = tile_Idx->packet[ ((resno*numOflayers+layno)*cstr_info.numcomps+compno)*numOfprec+precno];
135             break;
136           case RPCL:
137             packet = tile_Idx->packet[ ((resno*numOfprec+precno)*cstr_info.numcomps+compno)*numOflayers+layno];
138             break;
139           case PCRL:
140             packet = tile_Idx->packet[ ((precno*cstr_info.numcomps+compno)*numOfres+resno)*numOflayers + layno];
141             break;
142           case CPRL:
143             packet = tile_Idx->packet[ ((compno*numOfprec+precno)*numOfres+resno)*numOflayers + layno];
144             break;
145           default:
146             fprintf( stderr, "failed to ppix indexing\n");
147           }
148
149           cio_write( cio, packet.start_pos-coff, size_of_coding);             /* start position */
150           cio_write( cio, packet.end_pos-packet.start_pos+1, size_of_coding); /* length         */
151           
152           num_packet++;
153         }
154       }
155     }
156   
157     while( num_packet < nmax){     /* PADDING */
158       cio_write( cio, 0, size_of_coding); /* start position            */
159       cio_write( cio, 0, size_of_coding); /* length                    */
160       num_packet++;
161     }   
162   }
163
164   len = cio_tell( cio)-lenp;
165   cio_seek( cio, lenp);
166   cio_write( cio, len, 4);        /* L  */
167   cio_seek( cio, lenp+len);
168
169   return len;
170 }