Created the file index.c in the codec directory. This file handles the creation of...
[openjpeg.git] / codec / image_to_j2k.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) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team 
8  * Copyright (c) 2006-2007, Parvatha Elangovan
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 #include <stdio.h>
33 #include <string.h>
34 #include <stdlib.h>
35 #include <math.h>
36
37 #include "openjpeg.h"
38 #include "compat/getopt.h"
39 #include "convert.h"
40 #include "dirent.h"
41 #include "index.h"
42
43 #ifndef WIN32
44 #define stricmp strcasecmp
45 #define strnicmp strncasecmp
46 #endif
47
48 /* ----------------------------------------------------------------------- */
49
50 #define J2K_CFMT 0
51 #define JP2_CFMT 1
52 #define JPT_CFMT 2
53
54 #define PXM_DFMT 10
55 #define PGX_DFMT 11
56 #define BMP_DFMT 12
57 #define YUV_DFMT 13
58 #define TIF_DFMT 14
59 #define RAW_DFMT 15
60 #define TGA_DFMT 16
61
62 /* ----------------------------------------------------------------------- */
63 #define CINEMA_24_CS 1302083    /*Codestream length for 24fps*/
64 #define CINEMA_48_CS 651041             /*Codestream length for 48fps*/
65 #define COMP_24_CS 1041666              /*Maximum size per color component for 2K & 4K @ 24fps*/
66 #define COMP_48_CS 520833               /*Maximum size per color component for 2K @ 48fps*/
67
68 typedef struct dircnt{
69         /** Buffer for holding images read from Directory*/
70         char *filename_buf;
71         /** Pointer to the buffer*/
72         char **filename;
73 }dircnt_t;
74
75 typedef struct img_folder{
76         /** The directory path of the folder containing input images*/
77         char *imgdirpath;
78         /** Output format*/
79         char *out_format;
80         /** Enable option*/
81         char set_imgdir;
82         /** Enable Cod Format for output*/
83         char set_out_format;
84         /** User specified rate stored in case of cinema option*/
85         float *rates;
86 }img_fol_t;
87
88 void encode_help_display() {
89         fprintf(stdout,"HELP\n----\n\n");
90         fprintf(stdout,"- the -h option displays this help information on screen\n\n");
91
92 /* UniPG>> */
93         fprintf(stdout,"List of parameters for the JPEG 2000 "
94 #ifdef USE_JPWL
95                 "+ JPWL "
96 #endif /* USE_JPWL */
97                 "encoder:\n");
98 /* <<UniPG */
99         fprintf(stdout,"\n");
100         fprintf(stdout,"REMARKS:\n");
101         fprintf(stdout,"---------\n");
102         fprintf(stdout,"\n");
103         fprintf(stdout,"The markers written to the main_header are : SOC SIZ COD QCD COM.\n");
104         fprintf(stdout,"COD and QCD never appear in the tile_header.\n");
105         fprintf(stdout,"\n");
106         fprintf(stdout,"By default:\n");
107         fprintf(stdout,"------------\n");
108         fprintf(stdout,"\n");
109         fprintf(stdout," * Lossless\n");
110         fprintf(stdout," * 1 tile\n");
111         fprintf(stdout," * Size of precinct : 2^15 x 2^15 (means 1 precinct)\n");
112         fprintf(stdout," * Size of code-block : 64 x 64\n");
113         fprintf(stdout," * Number of resolutions: 6\n");
114         fprintf(stdout," * No SOP marker in the codestream\n");
115         fprintf(stdout," * No EPH marker in the codestream\n");
116         fprintf(stdout," * No sub-sampling in x or y direction\n");
117         fprintf(stdout," * No mode switch activated\n");
118         fprintf(stdout," * Progression order: LRCP\n");
119         fprintf(stdout," * No index file\n");
120         fprintf(stdout," * No ROI upshifted\n");
121         fprintf(stdout," * No offset of the origin of the image\n");
122         fprintf(stdout," * No offset of the origin of the tiles\n");
123         fprintf(stdout," * Reversible DWT 5-3\n");
124 /* UniPG>> */
125 #ifdef USE_JPWL
126         fprintf(stdout," * No JPWL protection\n");
127 #endif /* USE_JPWL */
128 /* <<UniPG */
129         fprintf(stdout,"\n");
130         fprintf(stdout,"Parameters:\n");
131         fprintf(stdout,"------------\n");
132         fprintf(stdout,"\n");
133         fprintf(stdout,"Required Parameters (except with -h):\n");
134         fprintf(stdout,"One of the two options -ImgDir or -i must be used\n");
135         fprintf(stdout,"\n");
136         fprintf(stdout,"-ImgDir      : Image file Directory path (example ../Images) \n");
137         fprintf(stdout,"    When using this option -OutFor must be used\n");
138         fprintf(stdout,"\n");
139         fprintf(stdout,"-OutFor \n");
140         fprintf(stdout,"    REQUIRED only if -ImgDir is used\n");
141         fprintf(stdout,"          Need to specify only format without filename <BMP>  \n");
142         fprintf(stdout,"    Currently accepts PGM, PPM, PNM, PGX, BMP, TIF, RAW and TGA formats\n");
143         fprintf(stdout,"\n");
144         fprintf(stdout,"-i           : source file  (-i source.pnm also *.pgm, *.ppm, *.bmp, *.tif, *.raw, *.tga) \n");
145         fprintf(stdout,"    When using this option -o must be used\n");
146         fprintf(stdout,"\n");
147         fprintf(stdout,"-o           : destination file (-o dest.j2k or .jp2) \n");
148         fprintf(stdout,"\n");
149         fprintf(stdout,"Optional Parameters:\n");
150         fprintf(stdout,"\n");
151         fprintf(stdout,"-h           : display the help information \n ");
152         fprintf(stdout,"\n");
153         fprintf(stdout,"-cinema2K    : Digital Cinema 2K profile compliant codestream for 2K resolution.(-cinema2k 24 or 48) \n");
154   fprintf(stdout,"        Need to specify the frames per second for a 2K resolution. Only 24 or 48 fps is allowed\n"); 
155         fprintf(stdout,"\n");
156         fprintf(stdout,"-cinema4K    : Digital Cinema 4K profile compliant codestream for 4K resolution \n");
157         fprintf(stdout,"          Frames per second not required. Default value is 24fps\n"); 
158         fprintf(stdout,"\n");
159         fprintf(stdout,"-r           : different compression ratios for successive layers (-r 20,10,5)\n ");
160         fprintf(stdout,"                 - The rate specified for each quality level is the desired \n");
161         fprintf(stdout,"                   compression factor.\n");
162         fprintf(stdout,"                   Example: -r 20,10,1 means quality 1: compress 20x, \n");
163         fprintf(stdout,"                     quality 2: compress 10x and quality 3: compress lossless\n");
164         fprintf(stdout,"\n");
165         fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
166         fprintf(stdout,"\n");
167
168         fprintf(stdout,"-q           : different psnr for successive layers (-q 30,40,50) \n ");
169
170         fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
171
172         fprintf(stdout,"\n");
173         fprintf(stdout,"-n           : number of resolutions (-n 3) \n");
174         fprintf(stdout,"\n");
175         fprintf(stdout,"-b           : size of code block (-b 32,32) \n");
176         fprintf(stdout,"\n");
177         fprintf(stdout,"-c           : size of precinct (-c 128,128) \n");
178         fprintf(stdout,"\n");
179         fprintf(stdout,"-t           : size of tile (-t 512,512) \n");
180         fprintf(stdout,"\n");
181         fprintf(stdout,"-p           : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] \n");
182         fprintf(stdout,"\n");
183         fprintf(stdout,"-s           : subsampling factor (-s 2,2) [-s X,Y] \n");
184         fprintf(stdout,"             Remark: subsampling bigger than 2 can produce error\n");
185         fprintf(stdout,"\n");
186         fprintf(stdout,"-POC         : Progression order change (-POC T1=0,0,1,5,3,CPRL/T1=5,0,1,6,3,CPRL) \n");
187         fprintf(stdout,"      Example: T1=0,0,1,5,3,CPRL \n");
188         fprintf(stdout,"                         : Ttilenumber=Resolution num start,Component num start,Layer num end,Resolution num end,Component num end,Progression order\n");
189         fprintf(stdout,"\n");
190         fprintf(stdout,"-SOP         : write SOP marker before each packet \n");
191         fprintf(stdout,"\n");
192         fprintf(stdout,"-EPH         : write EPH marker after each header packet \n");
193         fprintf(stdout,"\n");
194         fprintf(stdout,"-M           : mode switch (-M 3) [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL)\n");
195         fprintf(stdout,"                 8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)] \n");
196         fprintf(stdout,"                 Indicate multiple modes by adding their values. \n");
197         fprintf(stdout,"                 ex: RESTART(4) + RESET(2) + SEGMARK(32) = -M 38\n");
198         fprintf(stdout,"\n");
199         fprintf(stdout,"-x           : create an index file *.Idx (-x index_name.Idx) \n");
200         fprintf(stdout,"\n");
201         fprintf(stdout,"-ROI         : c=%%d,U=%%d : quantization indices upshifted \n");
202         fprintf(stdout,"               for component c=%%d [%%d = 0,1,2]\n");
203         fprintf(stdout,"               with a value of U=%%d [0 <= %%d <= 37] (i.e. -ROI c=0,U=25) \n");
204         fprintf(stdout,"\n");
205         fprintf(stdout,"-d           : offset of the origin of the image (-d 150,300) \n");
206         fprintf(stdout,"\n");
207         fprintf(stdout,"-T           : offset of the origin of the tiles (-T 100,75) \n");
208         fprintf(stdout,"\n");
209         fprintf(stdout,"-I           : use the irreversible DWT 9-7 (-I) \n");
210         fprintf(stdout,"\n");
211 /* UniPG>> */
212 #ifdef USE_JPWL
213         fprintf(stdout,"-W           : adoption of JPWL (Part 11) capabilities (-W params)\n");
214         fprintf(stdout,"               The parameters can be written and repeated in any order:\n");
215         fprintf(stdout,"               [h<tilepart><=type>,s<tilepart><=method>,a=<addr>,...\n");
216         fprintf(stdout,"                ...,z=<size>,g=<range>,p<tilepart:pack><=type>]\n");
217         fprintf(stdout,"\n");
218         fprintf(stdout,"                 h selects the header error protection (EPB): 'type' can be\n");
219         fprintf(stdout,"                   [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
220         fprintf(stdout,"                   if 'tilepart' is absent, it is for main and tile headers\n");
221         fprintf(stdout,"                   if 'tilepart' is present, it applies from that tile\n");
222         fprintf(stdout,"                     onwards, up to the next h<> spec, or to the last tilepart\n");
223         fprintf(stdout,"                     in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
224         fprintf(stdout,"\n");
225         fprintf(stdout,"                 p selects the packet error protection (EEP/UEP with EPBs)\n");
226         fprintf(stdout,"                  to be applied to raw data: 'type' can be\n");
227         fprintf(stdout,"                   [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
228         fprintf(stdout,"                   if 'tilepart:pack' is absent, it is from tile 0, packet 0\n");
229         fprintf(stdout,"                   if 'tilepart:pack' is present, it applies from that tile\n");
230         fprintf(stdout,"                     and that packet onwards, up to the next packet spec\n");
231         fprintf(stdout,"                     or to the last packet in the last tilepart in the stream\n");
232         fprintf(stdout,"                     (max. %d specs)\n", JPWL_MAX_NO_PACKSPECS);
233         fprintf(stdout,"\n");
234         fprintf(stdout,"                 s enables sensitivity data insertion (ESD): 'method' can be\n");
235         fprintf(stdout,"                   [-1=NO ESD 0=RELATIVE ERROR 1=MSE 2=MSE REDUCTION 3=PSNR\n");
236         fprintf(stdout,"                    4=PSNR INCREMENT 5=MAXERR 6=TSE 7=RESERVED]\n");
237         fprintf(stdout,"                   if 'tilepart' is absent, it is for main header only\n");
238         fprintf(stdout,"                   if 'tilepart' is present, it applies from that tile\n");
239         fprintf(stdout,"                     onwards, up to the next s<> spec, or to the last tilepart\n");
240         fprintf(stdout,"                     in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
241         fprintf(stdout,"\n");
242         fprintf(stdout,"                 g determines the addressing mode: <range> can be\n");
243         fprintf(stdout,"                   [0=PACKET 1=BYTE RANGE 2=PACKET RANGE]\n");
244         fprintf(stdout,"\n");
245         fprintf(stdout,"                 a determines the size of data addressing: <addr> can be\n");
246         fprintf(stdout,"                   2/4 bytes (small/large codestreams). If not set, auto-mode\n");
247         fprintf(stdout,"\n");
248         fprintf(stdout,"                 z determines the size of sensitivity values: <size> can be\n");
249         fprintf(stdout,"                   1/2 bytes, for the transformed pseudo-floating point value\n");
250         fprintf(stdout,"\n");
251         fprintf(stdout,"                 ex.:\n");
252         fprintf(stdout,"                   h,h0=64,h3=16,h5=32,p0=78,p0:24=56,p1,p3:0=0,p3:20=32,s=0,\n");
253         fprintf(stdout,"                     s0=6,s3=-1,a=0,g=1,z=1\n");
254         fprintf(stdout,"                 means\n");
255         fprintf(stdout,"                   predefined EPB in MH, rs(64,32) from TPH 0 to TPH 2,\n");
256         fprintf(stdout,"                   CRC-16 in TPH 3 and TPH 4, CRC-32 in remaining TPHs,\n");
257         fprintf(stdout,"                   UEP rs(78,32) for packets 0 to 23 of tile 0,\n");
258         fprintf(stdout,"                   UEP rs(56,32) for packs. 24 to the last of tilepart 0,\n");
259         fprintf(stdout,"                   UEP rs default for packets of tilepart 1,\n");
260         fprintf(stdout,"                   no UEP for packets 0 to 19 of tilepart 3,\n");
261         fprintf(stdout,"                   UEP CRC-32 for packs. 20 of tilepart 3 to last tilepart,\n");
262         fprintf(stdout,"                   relative sensitivity ESD for MH,\n");
263         fprintf(stdout,"                   TSE ESD from TPH 0 to TPH 2, byte range with automatic\n");
264         fprintf(stdout,"                   size of addresses and 1 byte for each sensitivity value\n");
265         fprintf(stdout,"\n");
266         fprintf(stdout,"                 ex.:\n");
267         fprintf(stdout,"                       h,s,p\n");
268         fprintf(stdout,"                 means\n");
269         fprintf(stdout,"                   default protection to headers (MH and TPHs) as well as\n");
270         fprintf(stdout,"                   data packets, one ESD in MH\n");
271         fprintf(stdout,"\n");
272         fprintf(stdout,"                 N.B.: use the following recommendations when specifying\n");
273         fprintf(stdout,"                       the JPWL parameters list\n");
274         fprintf(stdout,"                   - when you use UEP, always pair the 'p' option with 'h'\n");
275         fprintf(stdout,"                 \n");
276 #endif /* USE_JPWL */
277 /* <<UniPG */
278         fprintf(stdout,"IMPORTANT:\n");
279         fprintf(stdout,"-----------\n");
280         fprintf(stdout,"\n");
281         fprintf(stdout,"The index file has the structure below:\n");
282         fprintf(stdout,"---------------------------------------\n");
283         fprintf(stdout,"\n");
284         fprintf(stdout,"Image_height Image_width\n");
285         fprintf(stdout,"progression order\n");
286         fprintf(stdout,"Tiles_size_X Tiles_size_Y\n");
287         fprintf(stdout,"Tiles_nb_X Tiles_nb_Y\n");
288         fprintf(stdout,"Components_nb\n");
289         fprintf(stdout,"Layers_nb\n");
290         fprintf(stdout,"decomposition_levels\n");
291         fprintf(stdout,"[Precincts_size_X_res_Nr Precincts_size_Y_res_Nr]...\n");
292         fprintf(stdout,"   [Precincts_size_X_res_0 Precincts_size_Y_res_0]\n");
293         fprintf(stdout,"Main_header_start_position\n");
294         fprintf(stdout,"Main_header_end_position\n");
295         fprintf(stdout,"Codestream_size\n");
296         fprintf(stdout,"\n");
297         fprintf(stdout,"INFO ON TILES\n");
298         fprintf(stdout,"tileno start_pos end_hd end_tile nbparts disto nbpix disto/nbpix\n");
299         fprintf(stdout,"Tile_0 start_pos end_Theader end_pos NumParts TotalDisto NumPix MaxMSE\n");
300         fprintf(stdout,"Tile_1   ''           ''        ''        ''       ''    ''      ''\n");
301         fprintf(stdout,"...\n");
302         fprintf(stdout,"Tile_Nt   ''           ''        ''        ''       ''    ''     ''\n");
303         fprintf(stdout,"...\n");
304         fprintf(stdout,"TILE 0 DETAILS\n");
305         fprintf(stdout,"part_nb tileno num_packs start_pos end_tph_pos end_pos\n");
306         fprintf(stdout,"...\n");
307         fprintf(stdout,"Progression_string\n");
308         fprintf(stdout,"pack_nb tileno layno resno compno precno start_pos end_ph_pos end_pos disto\n");
309         fprintf(stdout,"Tpacket_0 Tile layer res. comp. prec. start_pos end_pos disto\n");
310         fprintf(stdout,"...\n");
311         fprintf(stdout,"Tpacket_Np ''   ''    ''   ''    ''       ''       ''     ''\n");
312
313         fprintf(stdout,"MaxDisto\n");
314
315         fprintf(stdout,"TotalDisto\n\n");
316 }
317
318 OPJ_PROG_ORDER give_progression(char progression[4]) {
319         if(strncmp(progression, "LRCP", 4) == 0) {
320                 return LRCP;
321         }
322         if(strncmp(progression, "RLCP", 4) == 0) {
323                 return RLCP;
324         }
325         if(strncmp(progression, "RPCL", 4) == 0) {
326                 return RPCL;
327         }
328         if(strncmp(progression, "PCRL", 4) == 0) {
329                 return PCRL;
330         }
331         if(strncmp(progression, "CPRL", 4) == 0) {
332                 return CPRL;
333         }
334
335         return PROG_UNKNOWN;
336 }
337
338 int get_num_images(char *imgdirpath){
339         DIR *dir;
340         struct dirent* content; 
341         int num_images = 0;
342
343         /*Reading the input images from given input directory*/
344
345         dir= opendir(imgdirpath);
346         if(!dir){
347                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
348                 return 0;
349         }
350
351         num_images=0;
352         while((content=readdir(dir))!=NULL){
353                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
354                         continue;
355                 num_images++;
356         }
357         return num_images;
358 }
359
360 int load_images(dircnt_t *dirptr, char *imgdirpath){
361         DIR *dir;
362         struct dirent* content; 
363         int i = 0;
364
365         /*Reading the input images from given input directory*/
366
367         dir= opendir(imgdirpath);
368         if(!dir){
369                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
370                 return 1;
371         }else   {
372                 fprintf(stderr,"Folder opened successfully\n");
373         }
374
375         while((content=readdir(dir))!=NULL){
376                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
377                         continue;
378
379                 strcpy(dirptr->filename[i],content->d_name);
380                 i++;
381         }
382         return 0;       
383 }
384
385 int get_file_format(char *filename) {
386         unsigned int i;
387         static const char *extension[] = {
388     "pgx", "pnm", "pgm", "ppm", "bmp", "tif", "raw", "tga", "j2k", "jp2", "j2c"
389     };
390         static const int format[] = {
391     PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, TGA_DFMT, J2K_CFMT, JP2_CFMT, J2K_CFMT
392     };
393         char * ext = strrchr(filename, '.');
394         if (ext == NULL)
395                 return -1;
396         ext++;
397         for(i = 0; i < sizeof(format)/sizeof(*format); i++) {
398                 if(strnicmp(ext, extension[i], 3) == 0) {
399                         return format[i];
400                 }
401         }
402         return -1;
403 }
404
405 char * get_file_name(char *name){
406         char *fname;
407         fname= (char*)malloc(OPJ_PATH_LEN*sizeof(char));
408         fname= strtok(name,".");
409         return fname;
410 }
411
412 char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_cparameters_t *parameters){
413         char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
414   char *temp_p, temp1[OPJ_PATH_LEN]="";
415
416         strcpy(image_filename,dirptr->filename[imageno]);
417         fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
418         parameters->decod_format = get_file_format(image_filename);
419         if (parameters->decod_format == -1)
420                 return 1;
421         sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
422         strncpy(parameters->infile, infilename, sizeof(infilename));
423
424         //Set output file
425         strcpy(temp_ofname,get_file_name(image_filename));
426         while((temp_p = strtok(NULL,".")) != NULL){
427                 strcat(temp_ofname,temp1);
428                 sprintf(temp1,".%s",temp_p);
429         }
430         if(img_fol->set_out_format==1){
431                 sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
432                 strncpy(parameters->outfile, outfilename, sizeof(outfilename));
433         }
434  return 0;
435 }
436
437 static int initialise_4K_poc(opj_poc_t *POC, int numres){
438         POC[0].tile  = 1; 
439         POC[0].resno0  = 0; 
440         POC[0].compno0 = 0;
441         POC[0].layno1  = 1;
442         POC[0].resno1  = numres-1;
443         POC[0].compno1 = 3;
444         POC[0].prg1 = CPRL;
445         POC[1].tile  = 1;
446         POC[1].resno0  = numres-1; 
447         POC[1].compno0 = 0;
448         POC[1].layno1  = 1;
449         POC[1].resno1  = numres;
450         POC[1].compno1 = 3;
451         POC[1].prg1 = CPRL;
452         return 2;
453 }
454
455 void cinema_parameters(opj_cparameters_t *parameters){
456         parameters->tile_size_on = false;
457         parameters->cp_tdx=1;
458         parameters->cp_tdy=1;
459         
460         /*Tile part*/
461         parameters->tp_flag = 'C';
462         parameters->tp_on = 1;
463
464         /*Tile and Image shall be at (0,0)*/
465         parameters->cp_tx0 = 0;
466         parameters->cp_ty0 = 0;
467         parameters->image_offset_x0 = 0;
468         parameters->image_offset_y0 = 0;
469
470         /*Codeblock size= 32*32*/
471         parameters->cblockw_init = 32;  
472         parameters->cblockh_init = 32;
473         parameters->csty |= 0x01;
474
475         /*The progression order shall be CPRL*/
476         parameters->prog_order = CPRL;
477
478         /* No ROI */
479         parameters->roi_compno = -1;
480
481         parameters->subsampling_dx = 1;         parameters->subsampling_dy = 1;
482
483         /* 9-7 transform */
484         parameters->irreversible = 1;
485
486 }
487
488 void cinema_setup_encoder(opj_cparameters_t *parameters,opj_image_t *image, img_fol_t *img_fol){
489         int i;
490         float temp_rate;
491         opj_poc_t *POC = NULL;
492
493         switch (parameters->cp_cinema){
494         case CINEMA2K_24:
495         case CINEMA2K_48:
496                 if(parameters->numresolution > 6){
497                         parameters->numresolution = 6;
498                 }
499                 if (!((image->comps[0].w == 2048) | (image->comps[0].h == 1080))){
500                         fprintf(stdout,"Image coordinates %d x %d is not 2K compliant.\nJPEG Digital Cinema Profile-3 "
501                                 "(2K profile) compliance requires that at least one of coordinates match 2048 x 1080\n",
502                                 image->comps[0].w,image->comps[0].h);
503                         parameters->cp_rsiz = STD_RSIZ;
504                 }
505         break;
506         
507         case CINEMA4K_24:
508                 if(parameters->numresolution < 1){
509                                 parameters->numresolution = 1;
510                         }else if(parameters->numresolution > 7){
511                                 parameters->numresolution = 7;
512                         }
513                 if (!((image->comps[0].w == 4096) | (image->comps[0].h == 2160))){
514                         fprintf(stdout,"Image coordinates %d x %d is not 4K compliant.\nJPEG Digital Cinema Profile-4" 
515                                 "(4K profile) compliance requires that at least one of coordinates match 4096 x 2160\n",
516                                 image->comps[0].w,image->comps[0].h);
517                         parameters->cp_rsiz = STD_RSIZ;
518                 }
519                 parameters->numpocs = initialise_4K_poc(parameters->POC,parameters->numresolution);
520                 break;
521         }
522
523         switch (parameters->cp_cinema){
524                 case CINEMA2K_24:
525                 case CINEMA4K_24:
526                         for(i=0 ; i<parameters->tcp_numlayers ; i++){
527                                 temp_rate = 0 ;
528                                 if (img_fol->rates[i]== 0){
529                                         parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
530                                         (CINEMA_24_CS * 8 * image->comps[0].dx * image->comps[0].dy);
531                                 }else{
532                                         temp_rate =((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
533                                                 (img_fol->rates[i] * 8 * image->comps[0].dx * image->comps[0].dy);
534                                         if (temp_rate > CINEMA_24_CS ){
535                                                 parameters->tcp_rates[i]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
536                                                 (CINEMA_24_CS * 8 * image->comps[0].dx * image->comps[0].dy);
537                                         }else{
538                                                 parameters->tcp_rates[i]= img_fol->rates[i];
539                                         }
540                                 }
541                         }
542                         parameters->max_comp_size = COMP_24_CS;
543                         break;
544                 
545                 case CINEMA2K_48:
546                         for(i=0 ; i<parameters->tcp_numlayers ; i++){
547                                 temp_rate = 0 ;
548                                 if (img_fol->rates[i]== 0){
549                                         parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
550                                         (CINEMA_48_CS * 8 * image->comps[0].dx * image->comps[0].dy);
551                                 }else{
552                                         temp_rate =((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
553                                                 (img_fol->rates[i] * 8 * image->comps[0].dx * image->comps[0].dy);
554                                         if (temp_rate > CINEMA_48_CS ){
555                                                 parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
556                                                 (CINEMA_48_CS * 8 * image->comps[0].dx * image->comps[0].dy);
557                                         }else{
558                                                 parameters->tcp_rates[i]= img_fol->rates[i];
559                                         }
560                                 }
561                         }
562                         parameters->max_comp_size = COMP_48_CS;
563                         break;
564         }
565         parameters->cp_disto_alloc = 1;
566 }
567
568 /* ------------------------------------------------------------------------------------ */
569
570 int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters,
571                                                                                                         img_fol_t *img_fol, raw_cparameters_t *raw_cp, char *indexfilename) {
572         int i, j,totlen;
573         option_t long_option[]={
574                 {"cinema2K",REQ_ARG, NULL ,'w'},
575                 {"cinema4K",NO_ARG, NULL ,'y'},
576                 {"ImgDir",REQ_ARG, NULL ,'z'},
577                 {"TP",REQ_ARG, NULL ,'v'},
578                 {"SOP",NO_ARG, NULL ,'S'},
579                 {"EPH",NO_ARG, NULL ,'E'},
580                 {"OutFor",REQ_ARG, NULL ,'O'},
581                 {"POC",REQ_ARG, NULL ,'P'},
582                 {"ROI",REQ_ARG, NULL ,'R'},
583         };
584
585         /* parse the command line */
586         const char optlist[] = "i:o:hr:q:n:b:c:t:p:s:SEM:x:R:d:T:If:P:C:F:"
587 #ifdef USE_JPWL
588                 "W:"
589 #endif /* USE_JPWL */
590                 ;
591
592         totlen=sizeof(long_option);
593         img_fol->set_out_format=0;
594         raw_cp->rawWidth = 0;
595
596         while (1) {
597     int c = getopt_long(argc, argv, optlist,long_option,totlen);
598                 if (c == -1)
599                         break;
600                 switch (c) {
601                         case 'i':                       /* input file */
602                         {
603                                 char *infile = optarg;
604                                 parameters->decod_format = get_file_format(infile);
605                                 switch(parameters->decod_format) {
606                                         case PGX_DFMT:
607                                         case PXM_DFMT:
608                                         case BMP_DFMT:
609                                         case TIF_DFMT:
610                                         case RAW_DFMT:
611                                         case TGA_DFMT:
612                                                 break;
613                                         default:
614                                                 fprintf(stderr,
615                                                         "!! Unrecognized format for infile : %s "
616               "[accept only *.pnm, *.pgm, *.ppm, *.pgx, *.bmp, *.tif, *.raw or *.tga] !!\n\n", 
617                                                         infile);
618                                                 return 1;
619                                 }
620                                 strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
621                         }
622                         break;
623
624                                 /* ----------------------------------------------------- */
625
626                         case 'o':                       /* output file */
627                         {
628                                 char *outfile = optarg;
629                                 parameters->cod_format = get_file_format(outfile);
630                                 switch(parameters->cod_format) {
631                                         case J2K_CFMT:
632                                         case JP2_CFMT:
633                                                 break;
634                                         default:
635                                                 fprintf(stderr, "Unknown output format image %s [only *.j2k, *.j2c or *.jp2]!! \n", outfile);
636                                                 return 1;
637                                 }
638                                 strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
639                         }
640                         break;
641
642                                 /* ----------------------------------------------------- */
643                         case 'O':                       /* output format */
644                                 {
645                                         char outformat[50];
646                                         char *of = optarg;
647                                         sprintf(outformat,".%s",of);
648                                         img_fol->set_out_format = 1;
649                                         parameters->cod_format = get_file_format(outformat);
650                                         switch(parameters->cod_format) {
651                                                 case J2K_CFMT:
652                                                 case JP2_CFMT:
653                                                         img_fol->out_format = optarg;
654                                                         break;
655                                                 default:
656                                                         fprintf(stderr, "Unknown output format image [only j2k, j2c, jp2]!! \n");
657                                                         return 1;
658                                         }
659                                 }
660                                 break;
661
662
663                                 /* ----------------------------------------------------- */
664
665
666                         case 'r':                       /* rates rates/distorsion */
667                         {
668                                 char *s = optarg;
669                                 while (sscanf(s, "%f", &parameters->tcp_rates[parameters->tcp_numlayers]) == 1) {
670                                         parameters->tcp_numlayers++;
671                                         while (*s && *s != ',') {
672                                                 s++;
673                                         }
674                                         if (!*s)
675                                                 break;
676                                         s++;
677                                 }
678                                 parameters->cp_disto_alloc = 1;
679                         }
680                         break;
681
682                                 /* ----------------------------------------------------- */
683
684                         
685                         case 'F':                       /* Raw image format parameters */
686                         {
687                                 char signo;
688                                 char *s = optarg;
689                                 if (sscanf(s, "%d,%d,%d,%d,%c", &raw_cp->rawWidth, &raw_cp->rawHeight, &raw_cp->rawComp, &raw_cp->rawBitDepth, &signo) == 5) {
690                                         if (signo == 's') {
691                                                 raw_cp->rawSigned = true;
692                                                 fprintf(stdout,"\nRaw file parameters: %d,%d,%d,%d Signed\n", raw_cp->rawWidth, raw_cp->rawHeight, raw_cp->rawComp, raw_cp->rawBitDepth);
693                                         }
694                                         else if (signo == 'u') {
695                                                 raw_cp->rawSigned = false;
696                                                 fprintf(stdout,"\nRaw file parameters: %d,%d,%d,%d Unsigned\n", raw_cp->rawWidth, raw_cp->rawHeight, raw_cp->rawComp, raw_cp->rawBitDepth);
697                                         }
698                                         else {
699                                                 fprintf(stderr,"\nError: invalid raw image parameters: Unknown sign of raw file\n");
700                                                 fprintf(stderr,"Please use the Format option -F:\n");
701                                                 fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
702                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
703                                                 fprintf(stderr,"Aborting\n");
704                                         }                                       
705                                 }
706                                 else {
707                                         fprintf(stderr,"\nError: invalid raw image parameters\n");
708                                         fprintf(stderr,"Please use the Format option -F:\n");
709                                         fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
710                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
711                                         fprintf(stderr,"Aborting\n");
712                                         return 1;
713                                 }
714                         }
715                         break;
716
717                                 /* ----------------------------------------------------- */
718
719                         case 'q':                       /* add fixed_quality */
720                         {
721                                 char *s = optarg;
722                                 while (sscanf(s, "%f", &parameters->tcp_distoratio[parameters->tcp_numlayers]) == 1) {
723                                         parameters->tcp_numlayers++;
724                                         while (*s && *s != ',') {
725                                                 s++;
726                                         }
727                                         if (!*s)
728                                                 break;
729                                         s++;
730                                 }
731                                 parameters->cp_fixed_quality = 1;
732                         }
733                         break;
734
735                                 /* dda */
736                                 /* ----------------------------------------------------- */
737
738                         case 'f':                       /* mod fixed_quality (before : -q) */
739                         {
740                                 int *row = NULL, *col = NULL;
741                                 int numlayers = 0, numresolution = 0, matrix_width = 0;
742
743                                 char *s = optarg;
744                                 sscanf(s, "%d", &numlayers);
745                                 s++;
746                                 if (numlayers > 9)
747                                         s++;
748
749                                 parameters->tcp_numlayers = numlayers;
750                                 numresolution = parameters->numresolution;
751                                 matrix_width = numresolution * 3;
752                                 parameters->cp_matrice = (int *) malloc(numlayers * matrix_width * sizeof(int));
753                                 s = s + 2;
754
755                                 for (i = 0; i < numlayers; i++) {
756                                         row = &parameters->cp_matrice[i * matrix_width];
757                                         col = row;
758                                         parameters->tcp_rates[i] = 1;
759                                         sscanf(s, "%d,", &col[0]);
760                                         s += 2;
761                                         if (col[0] > 9)
762                                                 s++;
763                                         col[1] = 0;
764                                         col[2] = 0;
765                                         for (j = 1; j < numresolution; j++) {
766                                                 col += 3;
767                                                 sscanf(s, "%d,%d,%d", &col[0], &col[1], &col[2]);
768                                                 s += 6;
769                                                 if (col[0] > 9)
770                                                         s++;
771                                                 if (col[1] > 9)
772                                                         s++;
773                                                 if (col[2] > 9)
774                                                         s++;
775                                         }
776                                         if (i < numlayers - 1)
777                                                 s++;
778                                 }
779                                 parameters->cp_fixed_alloc = 1;
780                         }
781                         break;
782
783                                 /* ----------------------------------------------------- */
784
785                         case 't':                       /* tiles */
786                         {
787                                 sscanf(optarg, "%d,%d", &parameters->cp_tdx, &parameters->cp_tdy);
788                                 parameters->tile_size_on = true;
789                         }
790                         break;
791
792                                 /* ----------------------------------------------------- */
793
794                         case 'n':                       /* resolution */
795                         {
796                                 sscanf(optarg, "%d", &parameters->numresolution);
797                         }
798                         break;
799
800                                 /* ----------------------------------------------------- */
801                         case 'c':                       /* precinct dimension */
802                         {
803                                 char sep;
804                                 int res_spec = 0;
805
806                                 char *s = optarg;
807                                 do {
808                                         sep = 0;
809                                         sscanf(s, "[%d,%d]%c", &parameters->prcw_init[res_spec],
810                                  &parameters->prch_init[res_spec], &sep);
811                                         parameters->csty |= 0x01;
812                                         res_spec++;
813                                         s = strpbrk(s, "]") + 2;
814                                 }
815                                 while (sep == ',');
816                                 parameters->res_spec = res_spec;
817                         }
818                         break;
819
820                                 /* ----------------------------------------------------- */
821
822                         case 'b':                       /* code-block dimension */
823                         {
824                                 int cblockw_init = 0, cblockh_init = 0;
825                                 sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
826                                 if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
827                                         || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
828                                         fprintf(stderr,
829                                                 "!! Size of code_block error (option -b) !!\n\nRestriction :\n"
830             "    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
831                                         return 1;
832                                 }
833                                 parameters->cblockw_init = cblockw_init;
834                                 parameters->cblockh_init = cblockh_init;
835                         }
836                         break;
837
838                                 /* ----------------------------------------------------- */
839
840                         case 'x':                       /* creation of index file */
841                         {
842                                 char *index = optarg;
843                                 strncpy(indexfilename, index, OPJ_PATH_LEN);
844                         }
845                         break;
846
847                                 /* ----------------------------------------------------- */
848
849                         case 'p':                       /* progression order */
850                         {
851                                 char progression[4];
852
853                                 strncpy(progression, optarg, 4);
854                                 parameters->prog_order = give_progression(progression);
855                                 if (parameters->prog_order == -1) {
856                                         fprintf(stderr, "Unrecognized progression order "
857             "[LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
858                                         return 1;
859                                 }
860                         }
861                         break;
862
863                                 /* ----------------------------------------------------- */
864
865                         case 's':                       /* subsampling factor */
866                         {
867                                 if (sscanf(optarg, "%d,%d", &parameters->subsampling_dx,
868                                     &parameters->subsampling_dy) != 2) {
869                                         fprintf(stderr, "'-s' sub-sampling argument error !  [-s dx,dy]\n");
870                                         return 1;
871                                 }
872                         }
873                         break;
874
875                                 /* ----------------------------------------------------- */
876
877                         case 'd':                       /* coordonnate of the reference grid */
878                         {
879                                 if (sscanf(optarg, "%d,%d", &parameters->image_offset_x0,
880                                     &parameters->image_offset_y0) != 2) {
881                                         fprintf(stderr, "-d 'coordonnate of the reference grid' argument "
882             "error !! [-d x0,y0]\n");
883                                         return 1;
884                                 }
885                         }
886                         break;
887
888                                 /* ----------------------------------------------------- */
889
890                         case 'h':                       /* display an help description */
891                                 encode_help_display();
892                                 return 1;
893
894                                 /* ----------------------------------------------------- */
895
896                         case 'P':                       /* POC */
897                         {
898                                 int numpocs = 0;                /* number of progression order change (POC) default 0 */
899                                 opj_poc_t *POC = NULL;  /* POC : used in case of Progression order change */
900
901                                 char *s = optarg;
902                                 POC = parameters->POC;
903
904                                 while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%4s", &POC[numpocs].tile,
905                                         &POC[numpocs].resno0, &POC[numpocs].compno0,
906                                         &POC[numpocs].layno1, &POC[numpocs].resno1,
907                                         &POC[numpocs].compno1, &POC[numpocs].progorder) == 7) {
908                                         POC[numpocs].prg1 = give_progression(POC[numpocs].progorder);
909                                         numpocs++;
910                                         while (*s && *s != '/') {
911                                                 s++;
912                                         }
913                                         if (!*s) {
914                                                 break;
915                                         }
916                                         s++;
917                                 }
918                                 parameters->numpocs = numpocs;
919                         }
920                         break;
921
922                                 /* ------------------------------------------------------ */
923
924                         case 'S':                       /* SOP marker */
925                         {
926                                 parameters->csty |= 0x02;
927                         }
928                         break;
929
930                                 /* ------------------------------------------------------ */
931
932                         case 'E':                       /* EPH marker */
933                         {
934                                 parameters->csty |= 0x04;
935                         }
936                         break;
937
938                                 /* ------------------------------------------------------ */
939
940                         case 'M':                       /* Mode switch pas tous au point !! */
941                         {
942                                 int value = 0;
943                                 if (sscanf(optarg, "%d", &value) == 1) {
944                                         for (i = 0; i <= 5; i++) {
945                                                 int cache = value & (1 << i);
946                                                 if (cache)
947                                                         parameters->mode |= (1 << i);
948                                         }
949                                 }
950                         }
951                         break;
952
953                                 /* ------------------------------------------------------ */
954
955                         case 'R':                       /* ROI */
956                         {
957                                 if (sscanf(optarg, "c=%d,U=%d", &parameters->roi_compno,
958                                            &parameters->roi_shift) != 2) {
959                                         fprintf(stderr, "ROI error !! [-ROI c='compno',U='shift']\n");
960                                         return 1;
961                                 }
962                         }
963                         break;
964
965                                 /* ------------------------------------------------------ */
966
967                         case 'T':                       /* Tile offset */
968                         {
969                                 if (sscanf(optarg, "%d,%d", &parameters->cp_tx0, &parameters->cp_ty0) != 2) {
970                                         fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
971                                         return 1;
972                                 }
973                         }
974                         break;
975
976                                 /* ------------------------------------------------------ */
977
978                         case 'C':                       /* add a comment */
979                         {
980                                 parameters->cp_comment = (char*)malloc(strlen(optarg) + 1);
981                                 if(parameters->cp_comment) {
982                                         strcpy(parameters->cp_comment, optarg);
983                                 }
984                         }
985                         break;
986
987
988                                 /* ------------------------------------------------------ */
989
990                         case 'I':                       /* reversible or not */
991                         {
992                                 parameters->irreversible = 1;
993                         }
994                         break;
995
996                         /* ------------------------------------------------------ */
997                         
998                         case 'v':                       /* Tile part generation*/
999                         {
1000                                 parameters->tp_flag = optarg[0];
1001                                 parameters->tp_on = 1;
1002                         }
1003                         break;  
1004
1005                                 /* ------------------------------------------------------ */
1006                         
1007                         case 'z':                       /* Image Directory path */
1008                         {
1009                                 img_fol->imgdirpath = (char*)malloc(strlen(optarg) + 1);
1010                                 strcpy(img_fol->imgdirpath,optarg);
1011                                 img_fol->set_imgdir=1;
1012                         }
1013                         break;
1014
1015                                 /* ------------------------------------------------------ */
1016                         
1017                         case 'w':                       /* Digital Cinema 2K profile compliance*/
1018                         {
1019                                 int fps=0;
1020                                 sscanf(optarg,"%d",&fps);
1021                                 if(fps == 24){
1022                                         parameters->cp_cinema = CINEMA2K_24;
1023                                 }else if(fps == 48 ){
1024                                         parameters->cp_cinema = CINEMA2K_48;
1025                                 }else {
1026                                         fprintf(stderr,"Incorrect value!! must be 24 or 48\n");
1027                                         return 1;
1028                                 }
1029                                 fprintf(stdout,"CINEMA 2K compliant codestream\n");
1030                                 parameters->cp_rsiz = CINEMA2K;
1031                                 
1032                         }
1033                         break;
1034                                 
1035                                 /* ------------------------------------------------------ */
1036                         
1037                         case 'y':                       /* Digital Cinema 4K profile compliance*/
1038                         {
1039                                 parameters->cp_cinema = CINEMA4K_24;
1040                                 fprintf(stdout,"CINEMA 4K compliant codestream\n");
1041                                 parameters->cp_rsiz = CINEMA4K;
1042                         }
1043                         break;
1044                                 
1045                                 /* ------------------------------------------------------ */
1046
1047 /* UniPG>> */
1048 #ifdef USE_JPWL
1049                                 /* ------------------------------------------------------ */
1050                         
1051                         case 'W':                       /* JPWL capabilities switched on */
1052                         {
1053                                 char *token = NULL;
1054                                 int hprot, pprot, sens, addr, size, range;
1055
1056                                 /* we need to enable indexing */
1057                                 if (!indexfilename) {
1058                                         strncpy(indexfilename, JPWL_PRIVATEINDEX_NAME, OPJ_PATH_LEN);
1059                                 }
1060
1061                                 /* search for different protection methods */
1062
1063                                 /* break the option in comma points and parse the result */
1064                                 token = strtok(optarg, ",");
1065                                 while(token != NULL) {
1066
1067                                         /* search header error protection method */
1068                                         if (*token == 'h') {
1069
1070                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1071
1072                                                 hprot = 1; /* predefined method */
1073
1074                                                 if(sscanf(token, "h=%d", &hprot) == 1) {
1075                                                         /* Main header, specified */
1076                                                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1077                                                                 ((hprot >= 37) && (hprot <= 128)))) {
1078                                                                 fprintf(stderr, "ERROR -> invalid main header protection method h = %d\n", hprot);
1079                                                                 return 1;
1080                                                         }
1081                                                         parameters->jpwl_hprot_MH = hprot;
1082
1083                                                 } else if(sscanf(token, "h%d=%d", &tile, &hprot) == 2) {
1084                                                         /* Tile part header, specified */
1085                                                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1086                                                                 ((hprot >= 37) && (hprot <= 128)))) {
1087                                                                 fprintf(stderr, "ERROR -> invalid tile part header protection method h = %d\n", hprot);
1088                                                                 return 1;
1089                                                         }
1090                                                         if (tile < 0) {
1091                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1092                                                                 return 1;
1093                                                         }
1094                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1095                                                                 parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1096                                                                 parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1097                                                         }
1098
1099                                                 } else if(sscanf(token, "h%d", &tile) == 1) {
1100                                                         /* Tile part header, unspecified */
1101                                                         if (tile < 0) {
1102                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1103                                                                 return 1;
1104                                                         }
1105                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1106                                                                 parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1107                                                                 parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1108                                                         }
1109
1110
1111                                                 } else if (!strcmp(token, "h")) {
1112                                                         /* Main header, unspecified */
1113                                                         parameters->jpwl_hprot_MH = hprot;
1114
1115                                                 } else {
1116                                                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1117                                                         return 1;
1118                                                 };
1119
1120                                         }
1121
1122                                         /* search packet error protection method */
1123                                         if (*token == 'p') {
1124
1125                                                 static int pack = 0, tile = 0, packspec = 0, lastpackno = 0;
1126
1127                                                 pprot = 1; /* predefined method */
1128
1129                                                 if (sscanf(token, "p=%d", &pprot) == 1) {
1130                                                         /* Method for all tiles and all packets */
1131                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1132                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1133                                                                 fprintf(stderr, "ERROR -> invalid default packet protection method p = %d\n", pprot);
1134                                                                 return 1;
1135                                                         }
1136                                                         parameters->jpwl_pprot_tileno[0] = 0;
1137                                                         parameters->jpwl_pprot_packno[0] = 0;
1138                                                         parameters->jpwl_pprot[0] = pprot;
1139
1140                                                 } else if (sscanf(token, "p%d=%d", &tile, &pprot) == 2) {
1141                                                         /* method specified from that tile on */
1142                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1143                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1144                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1145                                                                 return 1;
1146                                                         }
1147                                                         if (tile < 0) {
1148                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1149                                                                 return 1;
1150                                                         }
1151                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1152                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1153                                                                 parameters->jpwl_pprot_packno[packspec] = 0;
1154                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1155                                                         }
1156
1157                                                 } else if (sscanf(token, "p%d:%d=%d", &tile, &pack, &pprot) == 3) {
1158                                                         /* method fully specified from that tile and that packet on */
1159                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1160                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1161                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1162                                                                 return 1;
1163                                                         }
1164                                                         if (tile < 0) {
1165                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1166                                                                 return 1;
1167                                                         }
1168                                                         if (pack < 0) {
1169                                                                 fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1170                                                                 return 1;
1171                                                         }
1172                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1173                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1174                                                                 parameters->jpwl_pprot_packno[packspec] = pack;
1175                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1176                                                         }
1177
1178                                                 } else if (sscanf(token, "p%d:%d", &tile, &pack) == 2) {
1179                                                         /* default method from that tile and that packet on */
1180                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1181                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1182                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1183                                                                 return 1;
1184                                                         }
1185                                                         if (tile < 0) {
1186                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1187                                                                 return 1;
1188                                                         }
1189                                                         if (pack < 0) {
1190                                                                 fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1191                                                                 return 1;
1192                                                         }
1193                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1194                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1195                                                                 parameters->jpwl_pprot_packno[packspec] = pack;
1196                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1197                                                         }
1198
1199                                                 } else if (sscanf(token, "p%d", &tile) == 1) {
1200                                                         /* default from a tile on */
1201                                                         if (tile < 0) {
1202                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1203                                                                 return 1;
1204                                                         }
1205                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1206                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1207                                                                 parameters->jpwl_pprot_packno[packspec] = 0;
1208                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1209                                                         }
1210
1211
1212                                                 } else if (!strcmp(token, "p")) {
1213                                                         /* all default */
1214                                                         parameters->jpwl_pprot_tileno[0] = 0;
1215                                                         parameters->jpwl_pprot_packno[0] = 0;
1216                                                         parameters->jpwl_pprot[0] = pprot;
1217
1218                                                 } else {
1219                                                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1220                                                         return 1;
1221                                                 };
1222
1223                                         }
1224
1225                                         /* search sensitivity method */
1226                                         if (*token == 's') {
1227
1228                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1229
1230                                                 sens = 0; /* predefined: relative error */
1231
1232                                                 if(sscanf(token, "s=%d", &sens) == 1) {
1233                                                         /* Main header, specified */
1234                                                         if ((sens < -1) || (sens > 7)) {
1235                                                                 fprintf(stderr, "ERROR -> invalid main header sensitivity method s = %d\n", sens);
1236                                                                 return 1;
1237                                                         }
1238                                                         parameters->jpwl_sens_MH = sens;
1239
1240                                                 } else if(sscanf(token, "s%d=%d", &tile, &sens) == 2) {
1241                                                         /* Tile part header, specified */
1242                                                         if ((sens < -1) || (sens > 7)) {
1243                                                                 fprintf(stderr, "ERROR -> invalid tile part header sensitivity method s = %d\n", sens);
1244                                                                 return 1;
1245                                                         }
1246                                                         if (tile < 0) {
1247                                                                 fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1248                                                                 return 1;
1249                                                         }
1250                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1251                                                                 parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1252                                                                 parameters->jpwl_sens_TPH[tilespec++] = sens;
1253                                                         }
1254
1255                                                 } else if(sscanf(token, "s%d", &tile) == 1) {
1256                                                         /* Tile part header, unspecified */
1257                                                         if (tile < 0) {
1258                                                                 fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1259                                                                 return 1;
1260                                                         }
1261                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1262                                                                 parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1263                                                                 parameters->jpwl_sens_TPH[tilespec++] = hprot;
1264                                                         }
1265
1266                                                 } else if (!strcmp(token, "s")) {
1267                                                         /* Main header, unspecified */
1268                                                         parameters->jpwl_sens_MH = sens;
1269
1270                                                 } else {
1271                                                         fprintf(stderr, "ERROR -> invalid sensitivity method selection = %s\n", token);
1272                                                         return 1;
1273                                                 };
1274                                                 
1275                                                 parameters->jpwl_sens_size = 2; /* 2 bytes for default size */
1276                                         }
1277
1278                                         /* search addressing size */
1279                                         if (*token == 'a') {
1280
1281                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1282
1283                                                 addr = 0; /* predefined: auto */
1284
1285                                                 if(sscanf(token, "a=%d", &addr) == 1) {
1286                                                         /* Specified */
1287                                                         if ((addr != 0) && (addr != 2) && (addr != 4)) {
1288                                                                 fprintf(stderr, "ERROR -> invalid addressing size a = %d\n", addr);
1289                                                                 return 1;
1290                                                         }
1291                                                         parameters->jpwl_sens_addr = addr;
1292
1293                                                 } else if (!strcmp(token, "a")) {
1294                                                         /* default */
1295                                                         parameters->jpwl_sens_addr = addr; /* auto for default size */
1296
1297                                                 } else {
1298                                                         fprintf(stderr, "ERROR -> invalid addressing selection = %s\n", token);
1299                                                         return 1;
1300                                                 };
1301                                                 
1302                                         }
1303
1304                                         /* search sensitivity size */
1305                                         if (*token == 'z') {
1306
1307                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1308
1309                                                 size = 1; /* predefined: 1 byte */
1310
1311                                                 if(sscanf(token, "z=%d", &size) == 1) {
1312                                                         /* Specified */
1313                                                         if ((size != 0) && (size != 1) && (size != 2)) {
1314                                                                 fprintf(stderr, "ERROR -> invalid sensitivity size z = %d\n", size);
1315                                                                 return 1;
1316                                                         }
1317                                                         parameters->jpwl_sens_size = size;
1318
1319                                                 } else if (!strcmp(token, "a")) {
1320                                                         /* default */
1321                                                         parameters->jpwl_sens_size = size; /* 1 for default size */
1322
1323                                                 } else {
1324                                                         fprintf(stderr, "ERROR -> invalid size selection = %s\n", token);
1325                                                         return 1;
1326                                                 };
1327                                                 
1328                                         }
1329
1330                                         /* search range method */
1331                                         if (*token == 'g') {
1332
1333                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1334
1335                                                 range = 0; /* predefined: 0 (packet) */
1336
1337                                                 if(sscanf(token, "g=%d", &range) == 1) {
1338                                                         /* Specified */
1339                                                         if ((range < 0) || (range > 3)) {
1340                                                                 fprintf(stderr, "ERROR -> invalid sensitivity range method g = %d\n", range);
1341                                                                 return 1;
1342                                                         }
1343                                                         parameters->jpwl_sens_range = range;
1344
1345                                                 } else if (!strcmp(token, "g")) {
1346                                                         /* default */
1347                                                         parameters->jpwl_sens_range = range;
1348
1349                                                 } else {
1350                                                         fprintf(stderr, "ERROR -> invalid range selection = %s\n", token);
1351                                                         return 1;
1352                                                 };
1353                                                 
1354                                         }
1355
1356                                         /* next token or bust */
1357                                         token = strtok(NULL, ",");
1358                                 };
1359
1360
1361                                 /* some info */
1362                                 fprintf(stdout, "Info: JPWL capabilities enabled\n");
1363                                 parameters->jpwl_epc_on = true;
1364
1365                         }
1366                         break;
1367 #endif /* USE_JPWL */
1368 /* <<UniPG */
1369
1370                                 /* ------------------------------------------------------ */
1371
1372                         default:
1373                                 fprintf(stderr, "ERROR -> Command line not valid\n");
1374                                 return 1;
1375                 }
1376         }
1377
1378         /* check for possible errors */
1379         if (parameters->cp_cinema){
1380                 if(parameters->tcp_numlayers > 1){
1381                         parameters->cp_rsiz = STD_RSIZ;
1382         fprintf(stdout,"Warning: DC profiles do not allow more than one quality layer. The codestream created will not be compliant with the DC profile\n");
1383                 }
1384         }
1385         if(img_fol->set_imgdir == 1){
1386                 if(!(parameters->infile[0] == 0)){
1387                         fprintf(stderr, "Error: options -ImgDir and -i cannot be used together !!\n");
1388                         return 1;
1389                 }
1390                 if(img_fol->set_out_format == 0){
1391                         fprintf(stderr, "Error: When -ImgDir is used, -OutFor <FORMAT> must be used !!\n");
1392                         fprintf(stderr, "Only one format allowed! Valid formats are j2k and jp2!!\n");
1393                         return 1;
1394                 }
1395                 if(!((parameters->outfile[0] == 0))){
1396                         fprintf(stderr, "Error: options -ImgDir and -o cannot be used together !!\n");
1397                         fprintf(stderr, "Specify OutputFormat using -OutFor<FORMAT> !!\n");
1398                         return 1;
1399                 }
1400         }else{
1401                 if((parameters->infile[0] == 0) || (parameters->outfile[0] == 0)) {
1402                         fprintf(stderr, "Error: One of the options; -i or -ImgDir must be specified\n");
1403                         fprintf(stderr, "Error: When using -i; -o must be used\n");
1404                         fprintf(stderr, "usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
1405                         return 1;
1406                 }
1407         }
1408
1409         if (parameters->decod_format == RAW_DFMT && raw_cp->rawWidth == 0) {
1410                         fprintf(stderr,"\nError: invalid raw image parameters\n");
1411                         fprintf(stderr,"Please use the Format option -F:\n");
1412                         fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
1413                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
1414                         fprintf(stderr,"Aborting\n");
1415                         return 1;
1416         }
1417
1418         if ((parameters->cp_disto_alloc || parameters->cp_fixed_alloc || parameters->cp_fixed_quality)
1419                 && (!(parameters->cp_disto_alloc ^ parameters->cp_fixed_alloc ^ parameters->cp_fixed_quality))) {
1420                 fprintf(stderr, "Error: options -r -q and -f cannot be used together !!\n");
1421                 return 1;
1422         }                               /* mod fixed_quality */
1423
1424         /* if no rate entered, lossless by default */
1425         if (parameters->tcp_numlayers == 0) {
1426                 parameters->tcp_rates[0] = 0;   /* MOD antonin : losslessbug */
1427                 parameters->tcp_numlayers++;
1428                 parameters->cp_disto_alloc = 1;
1429         }
1430
1431         if((parameters->cp_tx0 > parameters->image_offset_x0) || (parameters->cp_ty0 > parameters->image_offset_y0)) {
1432                 fprintf(stderr,
1433                         "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
1434                         parameters->cp_tx0, parameters->image_offset_x0, parameters->cp_ty0, parameters->image_offset_y0);
1435                 return 1;
1436         }
1437
1438         for (i = 0; i < parameters->numpocs; i++) {
1439                 if (parameters->POC[i].prg == -1) {
1440                         fprintf(stderr,
1441                                 "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
1442                                 i + 1);
1443                 }
1444         }
1445
1446         return 0;
1447 }
1448
1449 /* -------------------------------------------------------------------------- */
1450
1451 /**
1452 sample error callback expecting a FILE* client object
1453 */
1454 void error_callback(const char *msg, void *client_data) {
1455         FILE *stream = (FILE*)client_data;
1456         fprintf(stream, "[ERROR] %s", msg);
1457 }
1458 /**
1459 sample warning callback expecting a FILE* client object
1460 */
1461 void warning_callback(const char *msg, void *client_data) {
1462         FILE *stream = (FILE*)client_data;
1463         fprintf(stream, "[WARNING] %s", msg);
1464 }
1465 /**
1466 sample debug callback expecting a FILE* client object
1467 */
1468 void info_callback(const char *msg, void *client_data) {
1469         FILE *stream = (FILE*)client_data;
1470         fprintf(stream, "[INFO] %s", msg);
1471 }
1472
1473 /* -------------------------------------------------------------------------- */
1474
1475 int main(int argc, char **argv) {
1476         bool bSuccess;
1477         opj_cparameters_t parameters;   /* compression parameters */
1478         img_fol_t img_fol;
1479         opj_event_mgr_t event_mgr;              /* event manager */
1480         opj_image_t *image = NULL;
1481         int i,num_images;
1482         int imageno;
1483         dircnt_t *dirptr;
1484         raw_cparameters_t raw_cp;
1485         opj_codestream_info_t cstr_info;                /* Codestream information structure */
1486         char indexfilename[OPJ_PATH_LEN];       /* index file name */
1487
1488         /*
1489         configure the event callbacks (not required)
1490         setting of each callback is optionnal
1491         */
1492         memset(&event_mgr, 0, sizeof(opj_event_mgr_t));
1493         event_mgr.error_handler = error_callback;
1494         event_mgr.warning_handler = warning_callback;
1495         event_mgr.info_handler = info_callback;
1496
1497         /* set encoding parameters to default values */
1498         opj_set_default_encoder_parameters(&parameters);
1499
1500         /* Initialize indexfilename and img_fol */
1501         *indexfilename = 0;
1502         memset(&img_fol,0,sizeof(img_fol_t));
1503
1504         /* parse input and get user encoding parameters */
1505         if(parse_cmdline_encoder(argc, argv, &parameters,&img_fol, &raw_cp, indexfilename) == 1) {
1506                 return 1;
1507         }
1508         
1509         if (parameters.cp_cinema){
1510                 img_fol.rates = (float*)malloc(parameters.tcp_numlayers * sizeof(float));
1511                 for(i=0; i< parameters.tcp_numlayers; i++){
1512                         img_fol.rates[i] = parameters.tcp_rates[i];
1513                 }
1514                 cinema_parameters(&parameters);
1515         }                               
1516
1517         /* Create comment for codestream */
1518         if(parameters.cp_comment == NULL) {
1519     const char comment[] = "Created by OpenJPEG version ";
1520                 const size_t clen = strlen(comment);
1521     const char *version = opj_version();
1522 /* UniPG>> */
1523 #ifdef USE_JPWL
1524                 parameters.cp_comment = (char*)malloc(clen+strlen(version)+11);
1525                 sprintf(parameters.cp_comment,"%s%s with JPWL", comment, version);
1526 #else
1527                 parameters.cp_comment = (char*)malloc(clen+strlen(version)+1);
1528                 sprintf(parameters.cp_comment,"%s%s", comment, version);
1529 #endif
1530 /* <<UniPG */
1531         }
1532
1533         /* Read directory if necessary */
1534         if(img_fol.set_imgdir==1){
1535                 num_images=get_num_images(img_fol.imgdirpath);
1536                 dirptr=(dircnt_t*)malloc(sizeof(dircnt_t));
1537                 if(dirptr){
1538                         dirptr->filename_buf = (char*)malloc(num_images*OPJ_PATH_LEN*sizeof(char));     // Stores at max 10 image file names
1539                         dirptr->filename = (char**) malloc(num_images*sizeof(char*));
1540                         if(!dirptr->filename_buf){
1541                                 return 0;
1542                         }
1543                         for(i=0;i<num_images;i++){
1544                                 dirptr->filename[i] = dirptr->filename_buf + i*OPJ_PATH_LEN;
1545                         }
1546                 }
1547                 if(load_images(dirptr,img_fol.imgdirpath)==1){
1548                         return 0;
1549                 }
1550                 if (num_images==0){
1551                         fprintf(stdout,"Folder is empty\n");
1552                         return 0;
1553                 }
1554         }else{
1555                 num_images=1;
1556         }
1557         /*Encoding image one by one*/
1558         for(imageno=0;imageno<num_images;imageno++)     {
1559                 image = NULL;
1560                 fprintf(stderr,"\n");
1561                 
1562                 if(img_fol.set_imgdir==1){
1563                         if (get_next_file(imageno, dirptr,&img_fol, &parameters)) {
1564                                 fprintf(stderr,"skipping file...\n");
1565                                 continue;
1566                         }
1567                 }
1568                 switch(parameters.decod_format) {
1569                         case PGX_DFMT:
1570                                 break;
1571                         case PXM_DFMT:
1572                                 break;
1573                         case BMP_DFMT:
1574                                 break;
1575                         case TIF_DFMT:
1576                                 break;
1577                         case RAW_DFMT:
1578                                 break;
1579                         case TGA_DFMT:
1580                                 break;
1581                         default:
1582                                 fprintf(stderr,"skipping file...\n");
1583                                 continue;                       
1584                 }
1585
1586                         /* decode the source image */
1587                         /* ----------------------- */
1588
1589                         switch (parameters.decod_format) {
1590                                 case PGX_DFMT:
1591                                         image = pgxtoimage(parameters.infile, &parameters);
1592                                         if (!image) {
1593                                                 fprintf(stderr, "Unable to load pgx file\n");
1594                                                 return 1; 
1595                                         }
1596                                         break;
1597
1598                                 case PXM_DFMT:
1599                                         image = pnmtoimage(parameters.infile, &parameters);
1600                                         if (!image) {
1601                                                 fprintf(stderr, "Unable to load pnm file\n");
1602                                                 return 1;
1603                                         }
1604                                         break;
1605
1606                                 case BMP_DFMT:
1607                                         image = bmptoimage(parameters.infile, &parameters);
1608                                         if (!image) {
1609                                                 fprintf(stderr, "Unable to load bmp file\n");
1610                                                 return 1;
1611                                         }
1612                                         break;
1613                         
1614                                 case TIF_DFMT:
1615                                         image = tiftoimage(parameters.infile, &parameters);
1616                                         if (!image) {
1617                                                 fprintf(stderr, "Unable to load tiff file\n");
1618                                                 return 1;
1619                                         }
1620                                 break;
1621
1622                                 case RAW_DFMT:
1623                                         image = rawtoimage(parameters.infile, &parameters, &raw_cp);
1624                                         if (!image) {
1625                                                 fprintf(stderr, "Unable to load raw file\n");
1626                                                 return 1;
1627                                         }
1628                                 break;
1629
1630                                 case TGA_DFMT:
1631                                         image = tgatoimage(parameters.infile, &parameters);
1632                                         if (!image) {
1633                                                 fprintf(stderr, "Unable to load tga file\n");
1634                                                 return 1;
1635                                         }
1636                                 break;
1637                 }
1638                         /* Decide if MCT should be used */
1639                         parameters.tcp_mct = image->numcomps == 3 ? 1 : 0;
1640
1641                         if(parameters.cp_cinema){
1642                                 cinema_setup_encoder(&parameters,image,&img_fol);
1643                         }
1644
1645                         /* encode the destination image */
1646                         /* ---------------------------- */
1647
1648                         if (parameters.cod_format == J2K_CFMT) {        /* J2K format output */
1649                                 int codestream_length;
1650                                 opj_cio_t *cio = NULL;
1651                                 FILE *f = NULL;
1652
1653                                 /* get a J2K compressor handle */
1654                                 opj_cinfo_t* cinfo = opj_create_compress(CODEC_J2K);
1655
1656                                 /* catch events using our callbacks and give a local context */
1657                                 opj_set_event_mgr((opj_common_ptr)cinfo, &event_mgr, stderr);
1658
1659                                 /* setup the encoder parameters using the current image and user parameters */
1660                                 opj_setup_encoder(cinfo, &parameters, image);
1661
1662                                 /* open a byte stream for writing */
1663                                 /* allocate memory for all tiles */
1664                                 cio = opj_cio_open((opj_common_ptr)cinfo, NULL, 0);
1665
1666                                 /* encode the image */
1667                                 if (*indexfilename)                                     // If need to extract codestream information
1668                                         bSuccess = opj_encode_with_info(cinfo, cio, image, &cstr_info);
1669                                 else
1670                                         bSuccess = opj_encode(cinfo, cio, image, NULL);
1671                                 if (!bSuccess) {
1672                                         opj_cio_close(cio);
1673                                         fprintf(stderr, "failed to encode image\n");
1674                                         return 1;
1675                                 }
1676                                 codestream_length = cio_tell(cio);
1677
1678                                 /* write the buffer to disk */
1679                                 f = fopen(parameters.outfile, "wb");
1680                                 if (!f) {
1681                                         fprintf(stderr, "failed to open %s for writing\n", parameters.outfile);
1682                                         return 1;
1683                                 }
1684                                 fwrite(cio->buffer, 1, codestream_length, f);
1685                                 fclose(f);
1686
1687                                 fprintf(stderr,"Generated outfile %s\n",parameters.outfile);
1688                                 /* close and free the byte stream */
1689                                 opj_cio_close(cio);
1690
1691                                 /* Write the index to disk */
1692                                 if (*indexfilename) {
1693                                         bSuccess = write_index_file(&cstr_info, indexfilename);
1694                                         if (bSuccess) {
1695                                                 fprintf(stderr, "Failed to output index file\n");
1696                                         }
1697                                 }
1698
1699                                 /* free remaining compression structures */
1700                                 opj_destroy_compress(cinfo);
1701                                 if (*indexfilename)
1702                                         opj_destroy_cstr_info(&cstr_info);
1703                         } else {                        /* JP2 format output */
1704                                 int codestream_length;
1705                                 opj_cio_t *cio = NULL;
1706                                 FILE *f = NULL;
1707
1708                                 /* get a JP2 compressor handle */
1709                                 opj_cinfo_t* cinfo = opj_create_compress(CODEC_JP2);
1710
1711                                 /* catch events using our callbacks and give a local context */
1712                                 opj_set_event_mgr((opj_common_ptr)cinfo, &event_mgr, stderr);                   
1713
1714                                 /* setup the encoder parameters using the current image and using user parameters */
1715                                 opj_setup_encoder(cinfo, &parameters, image);
1716
1717                                 /* open a byte stream for writing */
1718                                 /* allocate memory for all tiles */
1719                                 cio = opj_cio_open((opj_common_ptr)cinfo, NULL, 0);
1720
1721                                 /* encode the image */
1722                                 if (*indexfilename)                                     // If need to extract codestream information
1723                                         bSuccess = opj_encode_with_info(cinfo, cio, image, &cstr_info);
1724                                 else
1725                                         bSuccess = opj_encode(cinfo, cio, image, NULL);
1726                                 if (!bSuccess) {
1727                                         opj_cio_close(cio);
1728                                         fprintf(stderr, "failed to encode image\n");
1729                                         return 1;
1730                                 }
1731                                 codestream_length = cio_tell(cio);
1732
1733                                 /* write the buffer to disk */
1734                                 f = fopen(parameters.outfile, "wb");
1735                                 if (!f) {
1736                                         fprintf(stderr, "failed to open %s for writing\n", parameters.outfile);
1737                                         return 1;
1738                                 }
1739                                 fwrite(cio->buffer, 1, codestream_length, f);
1740                                 fclose(f);
1741                                 fprintf(stderr,"Generated outfile %s\n",parameters.outfile);
1742                                 /* close and free the byte stream */
1743                                 opj_cio_close(cio);
1744                                 
1745                                 /* Write the index to disk */
1746                                 if (*indexfilename) {
1747                                         bSuccess = write_index_file(&cstr_info, indexfilename);
1748                                         if (bSuccess) {
1749                                                 fprintf(stderr, "Failed to output index file\n");
1750                                         }
1751                                 }
1752
1753                                 /* free remaining compression structures */
1754                                 opj_destroy_compress(cinfo);
1755                                 if (*indexfilename)
1756                                         opj_destroy_cstr_info(&cstr_info);
1757                         }
1758         
1759                         /* free image data */
1760                         opj_image_destroy(image);
1761         }
1762
1763         /* free user parameters structure */
1764   if(parameters.cp_comment) free(parameters.cp_comment);
1765         if(parameters.cp_matrice) free(parameters.cp_matrice);
1766
1767         return 0;
1768 }