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