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