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