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