[1.5] enabled JPP stream in JPIP (result of GSoC program)
[openjpeg.git] / applications / jpip / tools / indexer / ppix_manager.c
1 /*
2  * $Id$
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 <stdio.h>
37 #include <stdlib.h>
38 #include <math.h>
39 #include "indexbox_manager.h"
40 #include "cio_ext.h"
41 #include "cio.h"
42
43 /* 
44  * Write faix box of ppix
45  *
46  * @param[in] compno    component number
47  * @param[in] cstr_info codestream information
48  * @param[in] EPHused   true if if EPH option used
49  * @param[in] j2klen    length of j2k codestream
50  * @param[in] cio       file output handle
51  * @return              length of faix box
52  */
53 int write_ppixfaix( int compno, opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio);
54
55 int write_ppix( opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio)
56 {
57   int len, lenp, compno, i;
58   opj_jp2_box_t *box;
59
60   printf("cstr_info.packno %d\n", cstr_info.packno); //NMAX?
61
62   box = (opj_jp2_box_t *)calloc( cstr_info.numcomps, sizeof(opj_jp2_box_t));
63   
64   for (i=0;i<2;i++){
65     if (i) cio_seek( cio, lenp);
66     
67     lenp = cio_tell( cio);
68     cio_skip( cio, 4);              /* L [at the end] */
69     cio_write( cio, JPIP_PPIX, 4);  /* PPIX           */
70
71     write_manf( i, cstr_info.numcomps, box, cio);
72     
73     for (compno=0; compno<cstr_info.numcomps; compno++){
74       box[compno].length = write_ppixfaix( compno, cstr_info, EPHused, j2klen, cio);
75       box[compno].type = JPIP_FAIX;
76     }
77    
78     len = cio_tell( cio)-lenp;
79     cio_seek( cio, lenp);
80     cio_write( cio, len, 4);        /* L              */
81     cio_seek( cio, lenp+len);
82   }
83   
84   free(box);
85
86   return len;
87 }
88
89 // NMAX might be wrong , phix too, do sth to correction
90 int write_ppixfaix( int compno, opj_codestream_info_t cstr_info, opj_bool EPHused, int j2klen, opj_cio_t *cio)
91 {
92   int len, lenp;
93   int tileno, resno, precno, layno, num_packet=0;
94   int size_of_coding; // 4 or 8
95   int version;
96
97   if( j2klen > pow( 2, 32)){
98     size_of_coding =  8;
99     version = 1;
100   }
101   else{
102     size_of_coding = 4;
103     version = 0;
104   }
105   
106   lenp = cio_tell( cio);
107   cio_skip( cio, 4);              /* L [at the end]      */
108   cio_write( cio, JPIP_FAIX, 4);  /* FAIX                */ 
109   cio_write( cio, version, 1);     /* Version 0 = 4 bytes */
110
111   cio_ext_write( cio, cstr_info.packno, size_of_coding); /* NMAX */
112   cio_ext_write( cio, cstr_info.tw*cstr_info.th, size_of_coding);      /* M    */
113
114   for( tileno=0; tileno<cstr_info.tw*cstr_info.th; tileno++){
115     
116     opj_tile_info_t *tile_Idx = &cstr_info.tile[ tileno];
117     //    int correction = EPHused ? 3 : 1;
118     num_packet=0;
119         
120     for( resno=0; resno< cstr_info.numdecompos[compno]+1; resno++){
121       for( precno=0; precno<tile_Idx->pw[resno]*tile_Idx->ph[resno]; precno++){
122         for( layno=0; layno<cstr_info.numlayers; layno++){
123           opj_packet_info_t packet = tile_Idx->packet[num_packet];
124           cio_ext_write( cio, packet.start_pos, size_of_coding);                                   /* start position */
125           cio_ext_write( cio, packet.end_pos-packet.start_pos+1, size_of_coding); /* length         */
126           
127           num_packet++;
128         }
129       }
130     }
131     
132     /* PADDING */
133     while( num_packet < cstr_info.packno){
134       cio_ext_write( cio, 0, size_of_coding); /* start position            */
135       cio_ext_write( cio, 0, size_of_coding); /* length                    */
136       num_packet++;
137     }
138   }
139
140   len = cio_tell( cio)-lenp;
141   cio_seek( cio, lenp);
142   cio_write( cio, len, 4);        /* L  */
143   cio_seek( cio, lenp+len);
144
145   return len;
146
147 }