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