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